[ad_1]
Created by iFergggg
Features:
SEE WHAT TILES TO JUMP ON v
_G.seeTile = true -- set to false to turn off
local glassBridge = game.workspace['Glass Bridge'].GlassPane:GetChildren()
if _G.seeTile then
for i=1,#glassBridge do -- thank you guy i forgot the name of
if glassBridge[i]['1'].CanCollide == true then
glassBridge[i]['1'].Transparency = 0
elseif glassBridge[i]['2'].CanCollide == true then
glassBridge[i]['2'].Transparency = 0
end
end
else
for i, v in pairs(game:GetService("Workspace")["Glass Bridge"].GlassPane:GetDescendants()) do
if v:IsA("Part") then
v.Transparency = 0.7
end
end
end
FINISH OBBY/GET 10K v
local Finish = game:GetService("Workspace")["Glass Bridge"].Finish:FindFirstChild("TouchInterest", true).Parent
local pRoot = game.Players.LocalPlayer.Character.HumanoidRootPart
firetouchinterest(pRoot, Finish, 0)
firetouchinterest(pRoot, Finish, 1)
AUTO COMPLETE OBBY, SAME THING BUT IN A LOOP WOW v
_G.autoObby = true -- change to false to toggle loop
while _G.autoObby and wait(3.1) do
local Finish = game:GetService("Workspace")["Glass Bridge"].Finish:FindFirstChild("TouchInterest", true).Parent
local pRoot = game.Players.LocalPlayer.Character.HumanoidRootPart
firetouchinterest(pRoot, Finish, 0)
firetouchinterest(pRoot, Finish, 1)
end
REMOVE ALL GAMEPASS STUFF v
for i, v in pairs(game:GetService("Workspace").Pads:GetDescendants()) do -- remove gamepass spinners
if v:IsA("Model") then
v.Parent = game.Lighting
end
end
game:GetService("Workspace")["Become Squid Front Man"].Parent = game.Lighting -- remove become front man gamepass
game:GetService("Workspace")["Become Squid Game Guard"].Parent = game.Lighting -- remove become guard gamepass
game:GetService("Players").LocalPlayer.PlayerGui.Gamepass.Enabled = false -- remove gamepass gui
ENJOY!
Warning: DO NOT DOWNLOAD anything from this page, you’re only here to copy the script!
[ad_2]