Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local ScreenGui = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local RemoveRed = Instance.new("TextButton")
- local TeleportRed = Instance.new("TextButton")
- local RemoveBlue = Instance.new("TextButton")
- local TeleportBlue = Instance.new("TextButton")
- local TextLabel = Instance.new("TextLabel")
- local Walkspeed100 = Instance.new("TextButton")
- --Properties:
- ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- Frame.Parent = ScreenGui
- Frame.BackgroundColor3 = Color3.new(0.223529, 0.223529, 0.223529)
- Frame.BorderSizePixel = 0
- Frame.Position = UDim2.new(0.168495804, 0, 0.471849918, 0)
- Frame.Size = UDim2.new(0, 150, 0, 230)
- RemoveRed.Name = "RemoveRed"
- RemoveRed.Parent = Frame
- RemoveRed.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
- RemoveRed.BorderSizePixel = 0
- RemoveRed.Position = UDim2.new(0, 0, 0.246785864, 0)
- RemoveRed.Size = UDim2.new(0, 150, 0, 28)
- RemoveRed.Font = Enum.Font.SourceSans
- RemoveRed.Text = "Remove red laser door"
- RemoveRed.TextColor3 = Color3.new(1, 1, 1)
- RemoveRed.TextSize = 14
- TeleportRed.Name = "TeleportRed"
- TeleportRed.Parent = Frame
- TeleportRed.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
- TeleportRed.BorderSizePixel = 0
- TeleportRed.Position = UDim2.new(0, 0, 0.398394942, 0)
- TeleportRed.Size = UDim2.new(0, 150, 0, 28)
- TeleportRed.Font = Enum.Font.SourceSans
- TeleportRed.Text = "Teleport to Treasure Cove"
- TeleportRed.TextColor3 = Color3.new(1, 1, 1)
- TeleportRed.TextSize = 14
- RemoveBlue.Name = "RemoveBlue"
- RemoveBlue.Parent = Frame
- RemoveBlue.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
- RemoveBlue.BorderSizePixel = 0
- RemoveBlue.Position = UDim2.new(0, 0, 0.549358726, 0)
- RemoveBlue.Size = UDim2.new(0, 150, 0, 28)
- RemoveBlue.Font = Enum.Font.SourceSans
- RemoveBlue.Text = "Remove blue laser door"
- RemoveBlue.TextColor3 = Color3.new(1, 1, 1)
- RemoveBlue.TextSize = 14
- TeleportBlue.Name = "TeleportBlue"
- TeleportBlue.Parent = Frame
- TeleportBlue.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
- TeleportBlue.BorderSizePixel = 0
- TeleportBlue.Position = UDim2.new(0, 0, 0.697929919, 0)
- TeleportBlue.Size = UDim2.new(0, 150, 0, 28)
- TeleportBlue.Font = Enum.Font.SourceSans
- TeleportBlue.Text = "Teleport to Tropical Beach"
- TeleportBlue.TextColor3 = Color3.new(1, 1, 1)
- TeleportBlue.TextSize = 14
- TextLabel.Parent = Frame
- TextLabel.BackgroundColor3 = Color3.new(0.215686, 0, 0.647059)
- TextLabel.BorderSizePixel = 0
- TextLabel.Size = UDim2.new(0, 150, 0, 50)
- TextLabel.Font = Enum.Font.SourceSans
- TextLabel.Text = "Lil' Drill GUI"
- TextLabel.TextColor3 = Color3.new(0, 0, 0)
- TextLabel.TextScaled = true
- TextLabel.TextSize = 14
- TextLabel.TextStrokeColor3 = Color3.new(1, 1, 1)
- TextLabel.TextStrokeTransparency = 0
- TextLabel.TextWrapped = true
- Walkspeed100.Name = "Walkspeed100"
- Walkspeed100.Parent = Frame
- Walkspeed100.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
- Walkspeed100.BorderSizePixel = 0
- Walkspeed100.Position = UDim2.new(0, 0, 0.845755994, 0)
- Walkspeed100.Size = UDim2.new(0, 150, 0, 28)
- Walkspeed100.Font = Enum.Font.SourceSans
- Walkspeed100.Text = "Walkspeed 100"
- Walkspeed100.TextColor3 = Color3.new(1, 1, 1)
- Walkspeed100.TextSize = 14
- -- Scripts:
- function SCRIPT_TSWM80_FAKESCRIPT() -- Frame.Script
- local script = Instance.new('Script')
- script.Parent = Frame
- local fram = script.Parent
- fram.Selectable = true
- fram.Active = true
- fram.Draggable = true
- script.Parent.RemoveRed.MouseButton1Click:Connect(function()
- game.Workspace.RedSecurityGate:Destroy()
- game.Workspace.redSecurityGateBoundaries:Destroy()
- end)
- script.Parent.RemoveBlue.MouseButton1Click:Connect(function()
- game.Workspace.BlueSecurityGate:Destroy()
- game.Workspace.blueSecurityGateBoundaries:Destroy()
- end)
- script.Parent.TeleportRed.MouseButton1Click:Connect(function()
- local me = game.Players.LocalPlayer.Character
- me.HumanoidRootPart.CFrame = CFrame.new(238.02, 4.19, -145.99)
- end)
- script.Parent.TeleportBlue.MouseButton1Click:Connect(function()
- local me = game.Players.LocalPlayer.Character
- me.HumanoidRootPart.CFrame = CFrame.new(-230, 4.19, -145.99)
- end)
- script.Parent.Walkspeed100.MouseButton1Click:Connect(function()
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100
- end)
- end
- coroutine.resume(coroutine.create(SCRIPT_TSWM80_FAKESCRIPT))
Add Comment
Please, Sign In to add comment