MADE BY wiird2012
FEATURES:
- FAKE GLASS ESP
- FAKE GLASS DOESN’T KILL
- TELEPORT TO FINISH
- claiming win only works when most fake glass has been stepped on
SCRIPTS: [3]
TELEPORT TO THE END:
local hrp = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
hrp.CFrame = CFrame.new(-0.5, 760, -1216.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
FAKE GLASS DOESN’T KILL:
for i,v in pairs(Game.Workspace.Map:GetDescendants()) do
if v.ClassName == "TouchTransmitter" then
v:Destroy()
end
end
FAKE GLASS ESP:
for i,v in pairs(Game.Workspace.Map:GetDescendants()) do
if v.ClassName == "TouchTransmitter" then
local a = Instance.new("BoxHandleAdornment")
a.Name = ""
a.Parent = v.Parent
a.Adornee = v.Parent
a.AlwaysOnTop = true
a.ZIndex = 0
a.Size = v.Parent.Size
a.Transparency = 0.3
a.Color = BrickColor.new("Really red")
end
end