Weapon shooting faster in high frames rates

For some reason Task.wait() is faster in higher frame rates and so far i didn’t find any solution for this.

local shootrate = 60/700

while Mouse1Button do
	Ammo -= 1
	CreateBullet()
	task.wait(shootrate)
end

Also, the Recoil gets broken too.

1 Like

It Just Works.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.