How do I make a "for" loop that repeats its task every 0.1 seconds?
Hey. It's pretty easy. You want a For Loop, that loops around a table every 0,1 Seconds, right? You could just do this:
1 | while wait( 0.1 ) do -- executes every 0.1 seconds |
2 | for i, v in pairs (game:GetChildren()) do -- add your for loop here |
3 | -- your code here that should execute every 0.1 seconds for i and v. |
4 | end -- for loop end |
5 | end -- while end |
Example: Teleportation:
1 | while wait( 0.1 ) do |
2 | for i, v in pairs (game.Players:GetChildren()) do -- example for loop, loops through players |
3 | v.Character.PrimaryPart.Position = Vector 3. new( 0 , 64 , 0 ) -- example code line |
4 | end |
5 | end |
1 | while wait( 0.1 ) do |
2 | -- your code here |
3 | end |
Easy and simple loop. You can learn more about loops here: https://developer.roblox.com/en-us/articles/Loops