RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"ball that can move and be controlled with W A S D"
-- local script local player = game.Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local humanoid = character:WaitForChild("Humanoid") local ball = script.Parent local speed = 5 local function move(inputObject) if inputObject.KeyCode == Enum.KeyCode.W then ball.Position = ball.Position + Vector3.new(0,0,speed) elseif inputObject.KeyCode == Enum.KeyCode.A then ball.Position = ball.Position + Vector3.new(-speed,0,0) elseif inputObject.KeyCode == Enum.KeyCode.S then ball.Position = ball.Position + Vector3.new(0,0,-speed) elseif inputObject.KeyCode == Enum.KeyCode.D then ball.Position = ball.Position + Vector3.new(speed,0,0) end end player.InputBegan:Connect(move)