loadstring(game:HttpGet("https://raw.githubusercontent.com/ShiroOnTop/Super-OP-Script/main/Script.lua"))()--[[
WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
]]
_G.stopTeleporting = false -- turn this to true and execute again if u want it to stop !!!
local function findClosestChild(children, player)
if not children or #children == 0 then
return
end
local closestChild = nil
local shortestDistance = math.huge
for _, v in ipairs(children) do
if v.Name == "Highlight" or v.Transparency == 0.75 then
continue
end
local distance = (v.Position - player.Character.HumanoidRootPart.Position).Magnitude
if distance < shortestDistance then
shortestDistance = distance
closestChild = v
end
end
return closestChild
end
local children = game:GetService("Workspace")["__THINGS"].Presents:GetChildren()
local player = game.Players.LocalPlayer
local lastTeleportedChild = nil
while not _G.stopTeleporting do
local closestChild = findClosestChild(children, player)
if not closestChild then
print("No closest child found.")
break
end
if lastTeleportedChild == closestChild then
print("Already teleported to this child.")
continue
end
lastTeleportedChild = closestChild
local startTime = os.time()
while os.difftime(os.time(), startTime) < 5 do
if not player.Character or not player.Character.HumanoidRootPart then
print("Player or HumanoidRootPart not found.")
break
end
player.Character.HumanoidRootPart.CFrame = CFrame.new(closestChild.Position)
task.wait()
end
local childFound = false
for i, child in ipairs(children) do
if child == closestChild then
table.remove(children, i)
childFound = true
break
end
end
if not childFound then
print("Child not found in th
{"html5":"htmlmixed","css":"css","javascript":"javascript","php":"php","python":"python","ruby":"ruby","lua":"text\/x-lua","bash":"text\/x-sh","go":"go","c":"text\/x-csrc","cpp":"text\/x-c++src","diff":"diff","latex":"stex","sql":"sql","xml":"xml","apl":"apl","asterisk":"asterisk","c_loadrunner":"text\/x-csrc","c_mac":"text\/x-csrc","coffeescript":"text\/x-coffeescript","csharp":"text\/x-csharp","d":"d","ecmascript":"javascript","erlang":"erlang","groovy":"text\/x-groovy","haskell":"text\/x-haskell","haxe":"text\/x-haxe","html4strict":"htmlmixed","java":"text\/x-java","java5":"text\/x-java","jquery":"javascript","mirc":"mirc","mysql":"sql","ocaml":"text\/x-ocaml","pascal":"text\/x-pascal","perl":"perl","perl6":"perl","plsql":"sql","properties":"text\/x-properties","q":"text\/x-q","scala":"scala","scheme":"text\/x-scheme","tcl":"text\/x-tcl","vb":"text\/x-vb","verilog":"text\/x-verilog","yaml":"text\/x-yaml","z80":"text\/x-z80"}