Categories > Exploiting > Scripts >

Mega Easy Obby 725 Stages Script

Posts: 21

Threads: 11

Joined: May, 2021

Reputation: 4

Posted

i haven't released anything in a pretty long time so heres a script i made in a few minutes
note: you have to go through the portals yourself :/

-- game: https://www.roblox.com/games/3587619225/Mega-Easy-Obby-725-Stages
-- creator: spoorloos#1109
local speed = 100

local tweenService = game:GetService("TweenService");
local workSpace = game:GetService("Workspace");
local players = game:GetService("Players");
local localPlayer = players.LocalPlayer;
local checkPoints = workSpace.Checkpoints;

assert(checkPoints, "couldn't find checkpoints.");
assert(localPlayer.Character, "couldn't find character.");
assert(localPlayer.Character.HumanoidRootPart, "couldn't find rootpart.");

local function tweenTeleport(part, targetPosition, studsPerSecond)
    local tweenTime = (part.Position - targetPosition).magnitude / studsPerSecond;
    local tween = tweenService:Create(part, TweenInfo.new(tweenTime), { CFrame = CFrame.new(targetPosition) });
    tween:Play();
    return tween.Completed:Wait();
end

local humanoidRootPart = localPlayer.Character:FindFirstChild("HumanoidRootPart");
local start = localPlayer.leaderstats["Stage"].value;
for index = (start + 1), #checkPoints:GetChildren() do
    local checkPoint = checkPoints:FindFirstChild(index);
    if (checkPoint) then
        local startPos = humanoidRootPart.Position;
        local lastPos = checkPoint.Position + Vector3.new(0, 2.5, 0);
        local middlePos = (startPos + lastPos) / 2 + Vector3.new(0, 50, 0);
        
        tweenTeleport(humanoidRootPart, middlePos, speed);
        tweenTeleport(humanoidRootPart, lastPos, speed);
    end
end
  • 0

mickey#3373

Syraxes_

Web Developer

vip

Posts: 1289

Threads: 40

Joined: Jul, 2021

Reputation: 63

Replied

Vouch! Thanks.

  • 0

I'm not lazy, I'm just highly motivated to do nothing. #I💚Dogs.

Posts: 1

Threads: 0

Joined: Dec, 2021

Reputation: 0

Replied

vouch pro scripter working 2021 free halal

  • 0

Moon

Moon

vip

Posts: 7399

Threads: 314

Joined: Aug, 2020

Reputation: 77

Replied

Cool nice script

  • 0

TERIHAX

i say im gay as a joke 🙀

Posts: 2186

Threads: 102

Joined: Jul, 2020

Reputation: 30

Replied

i got over lvl 700 the obby myself with barely any effort (did that like 1 year ago) ;-; but ok script ig

  • 0

Users viewing this thread:

( Members: 0, Guests: 1, Total: 1 )