Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local player = game.Players.LocalPlayer
- local playerGui = player:WaitForChild("PlayerGui")
- local textButton = Instance.new("TextButton")
- local screenGui = Instance.new("ScreenGui")
- screenGui.Name = "Work"
- screenGui.ResetOnSpawn = False
- screenGui.Parent = playerGui
- textButton.Size = UDim2.new(0, 200, 0, 50)
- textButton.Position = UDim2.new(0.1, -100, 0.5, -25)
- textButton.Text = "Become Escapee"
- textButton.Parent = screenGui
- textButton.MouseButton1Click:Connect(function()
- game.Players.LocalPlayer.Character:MoveTo(game.Workspace.Map.Functionable.Invisible.EscapeBarriers:FindFirstChild("Barrier").Position)
- Wait(2)
- game.Players.LocalPlayer.Character:FindFirstChild("Humanoid").Health = 0
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement