local ball = script.Parent ball.Touched:Connect(function(hit) local hand = hit.Parent:FindFirstChild("RightHand") if not hand then return end ball.Massless = true ball.CanCollide = false ball.CFrame = hand.CFrame local weld = Instance.new("WeldConstraint") weld.Part0 = script.Parent weld.Part1 = hand weld.Parent = ball end)
save