loadstring(game:HttpGet("https://raw.githubusercontent.com/Pixeluted/adoniscries/main/Source.lua",true))() --bypass by someone game:GetService("StarterGui"):SetCore("SendNotification", { Title = "Fps Changer script", Text = "i hope u did configure from settings in script, whatever made by rolesional", Duration = 6 }) local SETTINGS = { fpsv = 1000, -- fps additionmode = true, -- addition mode (when u get 250 fps for example, if u wrote 1000 fps its gonna be about 1250 fps so will look realistic) gfx = 10, --graphics quality resw = 1920, resh = 1080, togglekey = Enum.KeyCode.K --toggle spoof } local sp = true local uis = game:GetService("UserInputService") uis.InputBegan:Connect(function(input, gameProcessed) if not gameProcessed and input.KeyCode == SETTINGS.togglekey then sp = not sp local mtxt = SETTINGS.additionmode and "ADDITION (+)" or "FIXED" if sp then warn("spoof enabled bro | mode: " .. mtxt) else warn("spoof disabled bro") end end end) local mt = getrawmetatable(game) local hookz = mt.__namecall setreadonly(mt, false) mt.__namecall = newcclosure(function(self, ...) local args = {...} if sp and getnamecallmethod() == "FireServer" and type(args[1]) == "table" and (args[1].fps or args[1].t == "metrics") then if SETTINGS.additionmode then local currentf = args[1].fps or 0 args[1].fps = currentf + SETTINGS.fpsv else args[1].fps = SETTINGS.fpsv end args[1].gfx = SETTINGS.gfx args[1].res = Vector2.new(SETTINGS.resw, SETTINGS.resh) return hookz(self, unpack(args)) end return hookz(self, ...) end) setreadonly(mt, true) warn("toggle key: " .. tostring(SETTINGS.togglekey.Name)) warn("addition mode: " .. tostring(SETTINGS.additionmode))