RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a script that spins my character at 300 speed"
-- local script local Player = game:GetService('Players').LocalPlayer local Character = Player.Character local HumanoidRootPart = Character:WaitForChild('HumanoidRootPart') while true do HumanoidRootPart.CFrame = HumanoidRootPart.CFrame * CFrame.Angles(0, math.rad(300), 0) wait() end