RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"Make me a script where the football teleports to my hands"
-- local script local player = game.Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local humanoidRootPart = character.HumanoidRootPart local football = game.Workspace.Football local function teleportFootballToHands() football.Position = humanoidRootPart.Position + Vector3.new(0, 2, 0) football.Parent = character football.WeldConstraint.Part0 = football football.WeldConstraint.Part1 = character.RightHand end teleportFootballToHands()