RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"create a script that makes the player spin at all times unless they hit the g key"
-- local script local player = game.Players.LocalPlayer while true do player.Character.HumanoidRootPart.CFrame = player.Character.HumanoidRootPart.CFrame * CFrame.Angles(0, math.rad(90), 0) task.wait(0.1) end