-- [[ Rscripts Risk Notice ]] -- This script is not verified by rscripts.net. Deal with caution. -- -- Stay safe: -- • Never log in on unofficial Roblox sites or lookalike domains. -- • Real Roblox links use roblox.com (check the .com ending). -- • Treat fake Roblox login / "claim reward" pages as phishing. -- [[ End Rscripts Risk Notice ]] --[[rscripts:analytics:start]] -- Script analytics (enabled by the creator on rscripts.net). -- Runs in its own thread and cannot affect the script below. task.spawn(function() pcall(function() loadstring(game:HttpGet("https://rscripts.net/api/telemetry/client.lua?s=6a9aa01223962f91bc1702aa"))() end) end) --[[rscripts:analytics:end]] local SP = 200 -- speed ( for example ) local P = game.Players.LocalPlayer local C = require(game.ReplicatedStorage.Modules.Config) task.spawn(function() while true do local e = C[(P.Board and P.Board.Value) or "Skateboard"] or C.Skateboard if e then e.SPEED, e.AIR_SPEED = SP, SP + 10 end task.wait(0.15) end end)