--[[
WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
]]
local workspace = game:GetService("Workspace")
local player = game.Players.LocalPlayer
while wait(2) do
for _, child in pairs(workspace:GetChildren()) do
if child:IsA("Folder") and child.Name ~= "Lobby" then
local endPart = child:FindFirstChild("End")
if endPart and player.Character and player.Character:FindFirstChild("HumanoidRootPart") then
player.Character.HumanoidRootPart.CFrame = endPart.CFrame
end
end
end
end
Comments
No comments yet
Be the first to share your thoughts!