Possible to make on Click FPS Set?

image

Anyone know if this is possible to make it so on button click the FPS will be set for all players in game to 60 and then there is a option to uncap back.

Need to know cause when im hosting my shows, alot of players have uncappers which the cutscene goes by extremely fast

1 Like

For the fps, change the fps value using remote events. This coul only be ascetic though so be careful

local fps = game.ReplicatedStorage.FPS
local clock = tick()

while true do
    while clock + 1/fps.Value > tick() do end
    wait()
    clock = tick()
end
1 Like