How to make a Part Spin in Roblox Studios!

Поделиться
HTML-код
  • Опубликовано: 2 июл 2024
  • In todays Video, I will be showing to make a Part Spin in Roblox Studio!
    hope y"all liked it Subscribe for more and comment down what y"all want next!
    Scripts~
    local TurningSpeed = 10 -- You can change how fast you want the part to spin here
    while true do
    script.Parent.CFrame = script.Parent.CFrame * CFrame.Angles(0, math.rad(TurningSpeed), 0)
    wait(0.01) -- This determines how often the part turns (Updates the part to turn every 0.01 seconds, The lower the number the better transition)
    end
    My Roblox user, 0winto100win
    don't forget to check it out!
    Roblox Studio
    Roblox Studio Tutorial

Комментарии • 3

  • @KaxuYT
    @KaxuYT 2 дня назад +1

    nice bro

    • @exo31712
      @exo31712  2 дня назад

      @@KaxuYT thank you so much!❤️

  • @exo31712
    @exo31712  4 дня назад

    scripts~
    local TurningSpeed = 10 -- You can change how fast you want the part to spin here
    while true do
    script.Parent.CFrame = script.Parent.CFrame * CFrame.Angles(0, math.rad(TurningSpeed), 0)
    wait(0.01) -- This determines how often the part turns (Updates the part to turn every 0.01 seconds, The lower the number the better transition)
    end