--[[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=6a36f16ba97099226b8af838"))() end) end) --[[rscripts:analytics:end]] local config = require(game:GetService("ReplicatedStorage").ScooterConfig) local Scooters = config.Scooters local accle = 100 local topspeed = 999 for scooter, scooterdata in pairs(Scooters) do pcall(function(...) scooterdata.AccelerationMulti = accle scooterdata.TopSpeed = topspeed end) end