--Rocket Launcher if game.Players.LocalPlayer.Backpack:FindFirstChild("Rocket Launcher") then game.Players.LocalPlayer.Backpack:FindFirstChild("Rocket Launcher").Parent = game.Players.LocalPlayer.Character end local rocketlauncher = game.Players.LocalPlayer.Character["Rocket Launcher"] if rocketlauncher then --Removing Client Script if rocketlauncher:FindFirstChild("Client") then rocketlauncher:FindFirstChild("Client"):Remove() --Removing Script For Rockets end --Mouse local mouse = game.Players.LocalPlayer:GetMouse() mouse.Button1Down:Connect(function() if rocketlauncher and game.Players.LocalPlayer.Character:FindFirstChild("Rocket Launcher") then local ohVector31 = mouse.Hit.p local ohInstance2 = rocketlauncher rocketlauncher.RemoteEvent:FireServer(ohVector31, ohInstance2) end end) end