#How can I get my disks to spin?
1 messages · Page 1 of 1 (latest)
use chat gpt
i think it is spinning but its just not moving the player
change the texture so its not a soild color to double check
forever
** You are now Level 7! **
I checked and it's not moving
you need to put it in a loop
its only running once
local RunService = game:GetService("RunService")
local part = script.Parent
local speed = 1
RunService.Heartbeat:Connect(function()
part.CFrame = part.CFrame * CFrame.Angles(0, math.rad(speed), 0)
end)
this isn't working
it only rotates it once
Use collection service and tags
then apply a loop that increments the speed
part.CFrame = part.CFrame * CFrame.Angles(0, math.rad(speed), 0) this will set the rotation to 0,1,0 forever
oh wait no
just change it from * to +
i'm prrty sure what you're doing is 0,0,0 * 0,1,0
0 * 1 = 0
wait no I
I
I'm drunk lmao that's how you apply the angle
yeah you need to increment the speed
where are you putting the script
and what type of script
ohh mb it does work
just doesn't move the character but I can prob figure that out
thank youu