The name of this tool is 'Rocket', not 'Rocket Launcher'.
Put this script in a tool. Clicking while this tool is selected will make your character go up. Clicking again will make it go down.
Put this script in a tool. Clicking while this tool is selected will make your character go up. Clicking again will make it go down.
Code:
rocket = false
char = script.Parent.Parent.Parent.Character
link(script.Parent.MouseDown, function()
if rocket == false then
rocket = true
create("Rocket").Parent = char.Body
else
char.Body.Rocket.Parent = nil
end
end)