Yahoo Poland Wyszukiwanie w Internecie

Search results

  1. In this article, the while loop is used to repeat instructions forever. To create a while loop that repeats forever, use the syntax below, being sure to include instructions between the do and end keywords.

  2. 26 paź 2022 · When you put in a loop, any code put below the Loop will not run until the loop has ended. You can try using a loop to do multiple things at once. What not to do (unless you are breaking the loop): while true do --this will never stop, unless you add an if statement. wait() print("lol") end print("stopped")

  3. 9 sty 2022 · You got the whole idea wrong. It works without a loop because you call it, a while loop’s job in this case is calling the function continuously, but you said the function won’t run so your function is the culprit.

  4. 4 maj 2024 · To resolve this issue, you can use a while true loop and break out of it when the Status value changes to false. Here’s how you can modify your code:

  5. A while loop has three components: The while keyword. A condition, always after the keyword. Instructions, between the do and end keywords. In loops, conditions can be a variety of logical statements. Some examples might be if two numbers are the same. A loop will run if its condition is true.

  6. 26 lip 2022 · game.ReplicatedStorage.ItemCount.Value = game.ReplicatedStorage.ItemCount.Value + 1. wait(1) end. The problem is that it runs as if it is supposed to duplicate 3 times for every loop and rather than creating 1 new part each second, it creates 3 parts.

  7. Add a loop within a loop for more complex behavior and code. Learn how to use loops like while and for loops in this tutorial series for Roblox Studio. Great for beginners learning Lua or computer science.

  1. Ludzie szukają również