About 5,460,000 results
Open links in new tab
  1. Spinning Objects - Community Tutorials - Developer Forum - Roblox

    Jan 31, 2022 · Hello, in this tutorial I wanna show you how to make spinning objects like this: Get your Object/Part (i would prefer a gear) Create a Script Inside of the Part Write or paste this inside of the…

  2. How do I make a smooth spinning effect? - Roblox

    Sep 14, 2019 · So my goal here is to make a part spin. I want a very nice smooth effect. The reason being, I want to make a knife and I want to make it spin towards the target when thrown. If anyone can help me with that, I would appreciate it very much.

  3. How to make a part spin smoothly - Scripting Support - Roblox

    Oct 15, 2021 · There are multiple ways to go about this. Two methods that I would personally use are TweenService and using CFrame. CFrame: script.Parent.CFrame = script.Parent.CFrame * CFrame.Angles(0, math.rad(1), 0) TweenService. 1, Enum.EasingStyle.Linear, Enum.EasingDirection.Out, -1, false,

  4. HOW TO MAKE A SPINNING PART | Roblox Studio Tutorial

    Script: 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...

  5. How can i spin a model? - Scripting Support - Developer Forum - Roblox

    Aug 23, 2023 · This is how you spin an object. local partspeed = 0.05 local model = script.Parent while true do for _, part in pairs(model:GetDescendants()) do if part:IsA("BasePart") then part.CFrame = part.CFrame * CFrame.Angles(0, partspeed, 0) end end wait() end

  6. How would I make a part spin very smoothly - Roblox

    Oct 27, 2020 · Using hingeconstraints you can make it spin very fast smoothly, reaching very high rpms, no scripting required. Torque, rate of accele/deceleration are all controllable right in the same window. With hingeconstraints you can also make it a servo type of motor which will automatically align a part with a certain orientation.

  7. Create spinning objects | Documentation - Roblox Creator Hub

    Using the built-in power of Roblox's simulation engine, you can make objects spin and interact with their environment in a way that emulates real-world physical behavior that's familiar and intuitive to players, such as gravity, aerodynamics, and friction.

  8. How to Make Things Spin in Roblox Studio - YouTube

    In this tutorial, we'll dive into crafting a spinning script within Roblox Studio. We'll kick off by adding a part and altering its form with the select, move, scale, and rotate...

  9. How to make a script that makes a part spin in Roblox Studio!

    Mar 13, 2025 · In my video, I will show you how to make a script to make a part spin! This video is to show people how to code, not just copy and paste. Hope you enjoy!Make...

  10. How to make a spinning part? - Scripting Support - Roblox

    Jun 1, 2023 · Let’s take a regular part with no initial rotation. Here, I’m highlighting the axes of rotation (red = X, green = Y, blue = Z); [image] In the Euler angles system that Roblox uses, the axes of rotation will rotate along with the part.

Refresh