About 29,600,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 script local part = script.Parent while task.wait() do part.CFrame = part.CFrame * CFrame.fromEulerAnglesXYZ(0,0.05,0) end --we are basically rotating ...

  2. 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

  3. 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 (TurningSpeed),...

  4. 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,

  5. spin-rreally-fast/spin very fast 1.lua at main - GitHub

    a roblox script foor zorooua . Contribute to IANMOTOMAN/spin-rreally-fast development by creating an account on GitHub.

  6. 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.

  7. Roblox Lua Script: Player Spin - CodePal

    Learn how to create a Lua function in Roblox that makes the player spin. This function takes in parameters such as player object, speed, and duration to control the spinning animation. Follow the provided example usage to implement the function in your Roblox game.

  8. How to Make a Block Spin in Roblox Studio - Playbite

    Feb 21, 2024 · Wondering how to make a block spin in Roblox Studio? Learn the simple steps to add motion to your blocks and enhance your games.

  9. Roblox Part Spin Effect with Lua Scripting - CodePal

    To make a part spin in Roblox, you can achieve this by using Roblox Lua scripting. You can create a script that rotates the part continuously to give the spinning effect. Below is an example of how you can make a Roblox part spin: Open Roblox …

  10. How To Make A Spinning Model | Roblox Studio Guide - YouTube

    In this video I teach you how to make a model spin!Comment other tutorials for me to make!SCRIPT: while true do script.Parent:SetPrimaryPartCFrame (script.Par...

  11. Some results have been removed
Refresh