About 45,500 results
Open links in new tab
  1. How do I repeat this script? - Scripting Support - Roblox

    Feb 8, 2020 · You could’ve researched before you made a post… Anyways, there are many things called Loops that will reiterate something over and over. There are 3 loops: while, …

  2. How do I make this script loop? - Help and Feedback ... - Roblox

    May 20, 2022 · You’re welcome! You can learn more about loops here… developer.roblox.com Loops <p>Explore how to execute code multiple times through looping</p> GetStyled …

  3. How Do I Loop An Animation - Scripting Support - Roblox

    Jan 24, 2021 · I was able to get an animation to loop by adding a script to the rig in the workspace, then in the scripts properties set the RunContext to Client. I used the following …

  4. How do I make the command 'repeat' repeat something forever

    May 11, 2020 · I was making a memes of the day wall and I wanted to make it switch between 3 images. So I put a script and in that script I wrote: local MemePart = script.Parent wait(3) …

  5. How do I run a loop a set number of times? - Roblox

    Sep 8, 2020 · You might be needing a for loop. For loops loop some code for a certain number of times, then it just continues through the script. Here’s an example. for i = 1, 3 ...

  6. Lua Loops | What are they, and how do I use them? - Roblox

    Jan 14, 2024 · Lua Loops What are they, and how do I use them? Background Luau, Roblox’s version of the programming language Lua, has a ton to offer when it comes to development. …

  7. How to make a sound loop? - Scripting Support - Roblox

    Apr 25, 2022 · How to make a sound loop? Help and Feedback Scripting Support pevdn (bigman) April 25, 2022, 10:15am

  8. How Can I Continuously Rotate A Part? - Roblox

    Jan 20, 2023 · try this, put the script in the part you want to rotate Speed = 0.5 -- how fast it spins while true do -- infinite loop for i = 0, 360, Speed do script.Parent.CFrame = …

  9. Making a while loop without stopping the rest of my script - Roblox

    Mar 19, 2022 · I think the name of the topic explains the problem. I have a while loop in my script that stops the rest of the script when activated and that is bad pls help thanks

  10. Looping a local script - Scripting Support - Roblox

    Jun 21, 2023 · In addition to a while loop, you could use a for loop when you’re counting down for efficiency. while true do -- repeats forever for i = 10, 0, -1 do -- i starts at 10, loop runs until i …