ADVERTISEMENTREMOVE ADS
Description
Random script in my files (hopefully I don't get banned)
This script isn't mine, you can toggle on and off with F9 as it says in the script.
Can also change fps limit in "setfpscap(5000)"
This script isn't mine, you can toggle on and off with F9 as it says in the script.
Can also change fps limit in "setfpscap(5000)"
Features:
- Fps Booster
ADVERTISEMENTREMOVE ADS
26 Lines • 606 Bytes
getgenv().boostFPS = true -- // changing true to false will turn it off
local vim = game:GetService("VirtualInputManager")
setfpscap(5000)
game.DescendantAdded:Connect(function(d)
if d.Name == "MainView" and d.Parent.Name == "DevConsoleUI" and boostFPS then
task.wait()
local screen = d.Parent.Parent.Parent
screen.Enabled = false;
d.Visible = false;
end
end)
vim:SendKeyEvent(true, "F9", 0, game)
wait()
vim:SendKeyEvent(false, "F9", 0, game)
while true do
task.wait()
if not boostFPS then
continue;
end
warn("")
end
ADVERTISEMENTREMOVE ADS
ADVERTISEMENTREMOVE ADS








Comments
Doesn't work when you copy the whole thing?