Advertisement
Lucas_Gauer

Sleepover GUI

Jul 5th, 2019
275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.07 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. local Escapemonster = Instance.new("TextButton")
  7. local Generator = Instance.new("TextButton")
  8. local Crowbar = Instance.new("TextButton")
  9. local Endparkour = Instance.new("TextButton")
  10. local Mazeend = Instance.new("TextButton")
  11. --Properties:
  12. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  13. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  14.  
  15. Frame.Parent = ScreenGui
  16. Frame.BackgroundColor3 = Color3.new(1, 0, 0)
  17. Frame.Position = UDim2.new(0.88389504, 0, 0.630010009, 0)
  18. Frame.Size = UDim2.new(0, 100, 0, 185)
  19.  
  20. Escapemonster.Name = "Escape monster"
  21. Escapemonster.Parent = Frame
  22. Escapemonster.BackgroundColor3 = Color3.new(0.364706, 0, 0)
  23. Escapemonster.Size = UDim2.new(0, 100, 0, 31)
  24. Escapemonster.Font = Enum.Font.SourceSans
  25. Escapemonster.Text = "Escape Monster"
  26. Escapemonster.TextColor3 = Color3.new(0, 0, 0)
  27. Escapemonster.TextSize = 14
  28.  
  29. Generator.Name = "Generator"
  30. Generator.Parent = Frame
  31. Generator.BackgroundColor3 = Color3.new(0.364706, 0, 0)
  32. Generator.Position = UDim2.new(0, 0, 0.167567566, 0)
  33. Generator.Size = UDim2.new(0, 100, 0, 31)
  34. Generator.Font = Enum.Font.SourceSans
  35. Generator.Text = "Generator"
  36. Generator.TextColor3 = Color3.new(0, 0, 0)
  37. Generator.TextSize = 14
  38.  
  39. Crowbar.Name = "Crowbar"
  40. Crowbar.Parent = Frame
  41. Crowbar.BackgroundColor3 = Color3.new(0.364706, 0, 0)
  42. Crowbar.Position = UDim2.new(0, 0, 0.335135132, 0)
  43. Crowbar.Size = UDim2.new(0, 100, 0, 31)
  44. Crowbar.Font = Enum.Font.SourceSans
  45. Crowbar.Text = "Crowbar"
  46. Crowbar.TextColor3 = Color3.new(0, 0, 0)
  47. Crowbar.TextSize = 14
  48.  
  49. Endparkour.Name = "Endparkour"
  50. Endparkour.Parent = Frame
  51. Endparkour.BackgroundColor3 = Color3.new(0.364706, 0, 0)
  52. Endparkour.Position = UDim2.new(0, 0, 0.502702713, 0)
  53. Endparkour.Size = UDim2.new(0, 100, 0, 31)
  54. Endparkour.Font = Enum.Font.SourceSans
  55. Endparkour.Text = "End Parkour"
  56. Endparkour.TextColor3 = Color3.new(0, 0, 0)
  57. Endparkour.TextSize = 14
  58.  
  59. Mazeend.Name = "Maze end"
  60. Mazeend.Parent = Frame
  61. Mazeend.BackgroundColor3 = Color3.new(0.364706, 0, 0)
  62. Mazeend.Position = UDim2.new(0, 0, 0.670270264, 0)
  63. Mazeend.Size = UDim2.new(0, 100, 0, 31)
  64. Mazeend.Font = Enum.Font.SourceSans
  65. Mazeend.Text = "Maze end"
  66. Mazeend.TextColor3 = Color3.new(0, 0, 0)
  67. Mazeend.TextSize = 14
  68. -- Scripts:
  69. Escapemonster.MouseButton1Click:connect(function()
  70.     game.Players.LocalPlayer.Character:MoveTo(Vector3.new(93.4038849, 181.407547, -800.066772))
  71. end)
  72. Generator.MouseButton1Click:connect(function()
  73.     game.Players.LocalPlayer.Character:MoveTo(Vector3.new(118.785675, 181.407547, -921.372681))
  74. end)
  75. Crowbar.MouseButton1Click:connect(function()
  76.     game.Players.LocalPlayer.Character:MoveTo(Vector3.new(477.579865, 214.207611, -543.47113))
  77. end)
  78. Endparkour.MouseButton1Click:connect(function()
  79.     game.Players.LocalPlayer.Character:MoveTo(Vector3.new(447.172241, 209.207687, -903.879395))
  80. end)
  81. Mazeend.MouseButton1Click:connect(function()
  82.     game.Players.LocalPlayer.Character:MoveTo(Vector3.new(1347.12732, 197.807541, -1120.01855))
  83. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement