of     1   

Hedr0n
#183530452Saturday, February 13, 2016 8:58 PM GMT

I want to call something 15 times a seconded not 30. Im using renderstepped right now. smite me down god
TimeTicks
#183530545Saturday, February 13, 2016 8:59 PM GMT

renderstepped is every frame. u cant go any faster
Hedr0n
#183530659Saturday, February 13, 2016 9:00 PM GMT

Try again time, this time read. smite me down god
LegendaryAccount
#183530676Saturday, February 13, 2016 9:00 PM GMT

if TotalFrames % 2 == 0 then -- code end if it is in a function if TotalFrames % 2 == 0 then return end
Hedr0n
#183530784Saturday, February 13, 2016 9:02 PM GMT

Gross I was afraid of that. Thanks legend.. smite me down god
TimeTicks
#183530798Saturday, February 13, 2016 9:02 PM GMT

Then you need to read. 15 times a second is twice as fast, not twice as slower. rs:wait() is a start to the big solution
Hedr0n
#183531361Saturday, February 13, 2016 9:09 PM GMT

'twice as slower' what?... run this code time local fra = 0 local t15 = 0 local t30 = 0 RunService.RenderStepped:connect(function() t30 = t30 + 1 fra = fra + 1 if fra % 2 == then t15 = t15 + 1 end print(t15, t30) end Which one is added to more? The one that is updated 15 times a seconded or 30? smite me down god
Happywalker
#183531487Saturday, February 13, 2016 9:12 PM GMT

Then you need to read. 15 times a second is twice as fast, not twice as slower. lol

    of     1