RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a script that spins my arms around everywhere"
-- local script local player = game.Players.LocalPlayer local character = player.Character local humanoid = character:FindFirstChild("Humanoid") local leftArm = character:FindFirstChild("Left Arm") local rightArm = character:FindFirstChild("Right Arm") while true do humanoid:Move(Vector3.new(0, 0, 0), true) leftArm.CFrame = leftArm.CFrame * CFrame.Angles(0, math.rad(5), 0) rightArm.CFrame = rightArm.CFrame * CFrame.Angles(0, math.rad(-5), 0) wait() end