Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
3

How do you use "RenderStepped()"? [closed]

Asked by 9 years ago

I'm curious on how to use RenderStepped() because of this game that fascinates me: http://www.roblox.com/Cold-Fusion-The-Power-Of-RenderStepped-place?id=2169503

Plus, I can't really understand the ROBLOX Wiki and can't find it in the scripting glossary. Help? (Can you please use a script for an example that is simple?)

If you can find a useful answer, that's great! How about links?

Locked by IcyEvil, Void_Frost, PyccknnXakep, and shayner32

This question has been locked to preserve its current state and prevent spam and unwanted comments and answers.

Why was this question closed?

1 answer

Log in to vote
9
Answered by 9 years ago

RenderStepped is like a wait(0.0001) thing. So that means it calls that function like every mili-second, So it can be used for a replacement of while wait() do.

game:GetService("RunService").RenderStepped:connect(function()
--Code
end)
0
Thx, so it like does a frame in like 1/60 of a second? magmacute2099 5 — 9y
0
Yeah xImmortalChaos 565 — 9y
Ad