RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"can you make strikers oddysey pick up ball script"
-- script for ball local ball = script.Parent local debounce = true local function pickUp(otherPart) local player = game.Players:FindFirstChild(otherPart.Parent.Name) if player and debounce then debounce = false local humanoid = player.Character:FindFirstChild('Humanoid') if humanoid then ball.Parent = player.Character ball.Position = player.Character.HumanoidRootPart.Position + Vector3.new(0,2,0) ball.Anchored = true end wait(1) debounce = true end end ball.Touched:Connect(pickUp) -- Remember to add a system to drop the ball as well