#Help pls
2 messages · Page 1 of 1 (latest)
script.Parent.Activated:Connect(function()
local ball = script.Parent.Handle:Clone()
ball.Parent = workspace
ball.CanCollide = true
ball.AssemblyLinearVelocity = script.Parent.Parent:FindFirstChild("HumanoidRootPart").CFrame.lookVector*300+Vector3.new(0,10,0)
game:GetService("Debris"):AddItem(ball, 2)
end)