Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Unlock All Islands:
- while true do
- wait()
- local plr = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
- local path = game.Workspace
- for i,v in pairs(path:GetChildren()) do
- if v.Name == 'Walls' then
- v:Remove()
- end
- end
- end
- Unlock Launch Site And Others:
- local plr = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
- local path = game.Workspace.IslandBuyDoors
- for i,v in pairs(path:GetChildren()) do
- if v.ClassName == 'Part' then
- v:Remove()
- end
- end
- Goto Alien Zone:
- local plr = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
- local path = game.Workspace['Alien']
- for i,v in pairs(path:GetChildren()) do
- if v.Name == 'UpperTorso' then
- plr.CFrame = v.CFrame
- end
- end
Add Comment
Please, Sign In to add comment