Is wait(1/math.huge) faster than wait()?
wait() is faster; proven using some simple ticks. Seems to be a tad different of around .01 seconds:
1 | bob = tick() |
2 | wait( 1 / math.huge ) |
3 | now = tick() |
4 | print (now - bob, "---" ) |
5 | steve = tick() |
6 | wait() |
7 | john = tick() |
8 | print (john - steve) |
Output: 0.046874284744263 --- 0.032794237136841
The fastest available loop in ROBLOX is RunService:
1 | local rs = game:GetService( "RunService" ) |
2 | rs.RenderStepped:connect( function () |
3 | -- Put code to run every frame |
4 | end |