Categories > Exploiting > Scripts >
Universal Autocomplete Obby Script
Posted
I made auto complete obby script, works in 90% obbies. If you want I can make tutorial how to use it. Thanks for reading, there is the script. Sorry for my English if I say something wrong, English isn't my native language.
--[[
Thanks for using Universal Autocomplete Obby
Use dex to find path to checkpoints and stage stats
You can modify script if you want
Made by RunDTM
--]]
--values
_G.delay = 0.3 -- teleporting delay
_G.mode = "moveto" --moveto/cframe
_G.pathtocheckpoints = game:GetService("Workspace").Stages --path to checkpoints folder
_G.pathtostagestat = game:GetService("Players").LocalPlayer.leaderstats.Stage -- path to stage stats
--script
while true do
wait(_G.delay)
local stagevalue = _G.pathtostagestat.Value
local checkpoints = _G.pathtocheckpoints
local stage = stagevalue
if _G.mode == "moveto" then
game:service'Players'.LocalPlayer.Character:MoveTo(checkpoints[tostring(stage+1)].Position)
else
game:service'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame = checkpoints[tostring(stage+1)].CFrame
end
end
Thanks
Professional noob
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Cancel
Post