ADVERTISEMENTREMOVE ADS
Game icon

completer

NO JUMPING OBBY
4 months ago
Script preview thumbnail
Script Preview

Description

a simple obby completer for the roblox game no jump obby

i probably linked the wrong game but idgaf

it just teleports to each checkpoint every half a second

this might work for other sloppy obby games like it

ADVERTISEMENTREMOVE ADS
43 Lines • 1.42 KiB
Raw
-- Obby completer script
-- Created for No Jump Obby but could work for others
-- tested for hydrogen mac but it's so simple it could work on any executor
start_at = 1 -- where it should start teleporting from
number_of_checkpoints = 241 -- set this to the number of checkpoints in the game
teleport_time = 0.5 -- don't make it too short since you can't skip checkpoints in this game
local player = game.Players.LocalPlayer
local function teleport_to_checkpoints()
local character = player.Character or player.CharacterAdded:Wait()
local hrp = character:WaitForChild("HumanoidRootPart")
local checkpoints = workspace:WaitForChild("Checkpoints")
local ending = false
for i = start_at, number_of_checkpoints do
local checkpoint = checkpoints:FindFirstChild(tostring(i))
if checkpoint then
repeat
task.wait(0.1)
until character and character:FindFirstChild("HumanoidRootPart")
hrp.CFrame = checkpoint.CFrame + Vector3.new(0, 3, 0)
task.wait(teleport_time)
else
print("Checkpoint " .. i .. " could not be found!")
ending = true
break
end
end
if not ending then
print("Successfully completed all checkpoints!")
else
print("Stopped at checkpoint " .. start_at + number_of_checkpoints - 1)
end
end
teleport_to_checkpoints()
ADVERTISEMENTREMOVE ADS

Comments

3 comments
to add a comment
ts

i made this in like 5 minutes lol

0
0
ts

maybe i'll add some more stuff and improve it...

1
0
Hn

@ts2021 thank =)

0
0
ADVERTISEMENTREMOVE ADS