RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a script that spins my head at 100 speed"
-- local script local Player = game:GetService('Players').LocalPlayer local Character = Player.Character local Head = Character:WaitForChild('Head') local BodyAngularVelocity = Instance.new('BodyAngularVelocity') BodyAngularVelocity.MaxTorque = Vector3.new(0, math.huge, 0) BodyAngularVelocity.AngularVelocity = Vector3.new(0, 100, 0) BodyAngularVelocity.Parent = Head