Created by outmoon#1000
Features:
- BECOME FULLY INVISIBLE
- a simple trick that works on a bunch of games like GPO, Arsenal, MM2, World // Zero, basically every simulator, etc.
- your position is also server-sided, which is the difference between this script and other invisible scripts. You’re able to use weapons and interact with world stuff great for making a stealthy auto farm or for having an advantage.
UNIVERSAL GAMES
SCRIPT:
local removeNametags = false -- remove custom billboardgui nametags from hrp, could trigger anticheat
local plr = game:GetService("Players").LocalPlayer
local character = plr.Character
local hrp = character.HumanoidRootPart
local old = hrp.CFrame
if not character:FindFirstChild("LowerTorso") or character.PrimaryPart ~= hrp then
return print("unsupported")
end
if removeNametags then
local tag = hrp:FindFirstChildOfClass("BillboardGui")
if tag then tag:Destroy() end
hrp.ChildAdded:Connect(function(item)
if item:IsA("BillboardGui") then
task.wait()
item:Destroy()
end
end)
end
local newroot = character.LowerTorso.Root:Clone()
hrp.Parent = workspace
character.PrimaryPart = hrp
character:MoveTo(Vector3.new(old.X,9e9,old.Z))
hrp.Parent = character
task.wait(0.5)
newroot.Parent = hrp
hrp.CFrame = old