BINO2002

Untitled

Apr 19th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.34 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local Frame = Instance.new("Frame")
  3. local RemoveRed = Instance.new("TextButton")
  4. local TeleportRed = Instance.new("TextButton")
  5. local RemoveBlue = Instance.new("TextButton")
  6. local TeleportBlue = Instance.new("TextButton")
  7. local TextLabel = Instance.new("TextLabel")
  8. local Walkspeed100 = Instance.new("TextButton")
  9. --Properties:
  10. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  11. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  12.  
  13. Frame.Parent = ScreenGui
  14. Frame.BackgroundColor3 = Color3.new(0.223529, 0.223529, 0.223529)
  15. Frame.BorderSizePixel = 0
  16. Frame.Position = UDim2.new(0.168495804, 0, 0.471849918, 0)
  17. Frame.Size = UDim2.new(0, 150, 0, 230)
  18.  
  19. RemoveRed.Name = "RemoveRed"
  20. RemoveRed.Parent = Frame
  21. RemoveRed.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  22. RemoveRed.BorderSizePixel = 0
  23. RemoveRed.Position = UDim2.new(0, 0, 0.246785864, 0)
  24. RemoveRed.Size = UDim2.new(0, 150, 0, 28)
  25. RemoveRed.Font = Enum.Font.SourceSans
  26. RemoveRed.Text = "Remove red laser door"
  27. RemoveRed.TextColor3 = Color3.new(1, 1, 1)
  28. RemoveRed.TextSize = 14
  29.  
  30. TeleportRed.Name = "TeleportRed"
  31. TeleportRed.Parent = Frame
  32. TeleportRed.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  33. TeleportRed.BorderSizePixel = 0
  34. TeleportRed.Position = UDim2.new(0, 0, 0.398394942, 0)
  35. TeleportRed.Size = UDim2.new(0, 150, 0, 28)
  36. TeleportRed.Font = Enum.Font.SourceSans
  37. TeleportRed.Text = "Teleport to Treasure Cove"
  38. TeleportRed.TextColor3 = Color3.new(1, 1, 1)
  39. TeleportRed.TextSize = 14
  40.  
  41. RemoveBlue.Name = "RemoveBlue"
  42. RemoveBlue.Parent = Frame
  43. RemoveBlue.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  44. RemoveBlue.BorderSizePixel = 0
  45. RemoveBlue.Position = UDim2.new(0, 0, 0.549358726, 0)
  46. RemoveBlue.Size = UDim2.new(0, 150, 0, 28)
  47. RemoveBlue.Font = Enum.Font.SourceSans
  48. RemoveBlue.Text = "Remove blue laser door"
  49. RemoveBlue.TextColor3 = Color3.new(1, 1, 1)
  50. RemoveBlue.TextSize = 14
  51.  
  52. TeleportBlue.Name = "TeleportBlue"
  53. TeleportBlue.Parent = Frame
  54. TeleportBlue.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  55. TeleportBlue.BorderSizePixel = 0
  56. TeleportBlue.Position = UDim2.new(0, 0, 0.697929919, 0)
  57. TeleportBlue.Size = UDim2.new(0, 150, 0, 28)
  58. TeleportBlue.Font = Enum.Font.SourceSans
  59. TeleportBlue.Text = "Teleport to Tropical Beach"
  60. TeleportBlue.TextColor3 = Color3.new(1, 1, 1)
  61. TeleportBlue.TextSize = 14
  62.  
  63. TextLabel.Parent = Frame
  64. TextLabel.BackgroundColor3 = Color3.new(0.215686, 0, 0.647059)
  65. TextLabel.BorderSizePixel = 0
  66. TextLabel.Size = UDim2.new(0, 150, 0, 50)
  67. TextLabel.Font = Enum.Font.SourceSans
  68. TextLabel.Text = "Lil' Drill GUI"
  69. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  70. TextLabel.TextScaled = true
  71. TextLabel.TextSize = 14
  72. TextLabel.TextStrokeColor3 = Color3.new(1, 1, 1)
  73. TextLabel.TextStrokeTransparency = 0
  74. TextLabel.TextWrapped = true
  75.  
  76. Walkspeed100.Name = "Walkspeed100"
  77. Walkspeed100.Parent = Frame
  78. Walkspeed100.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  79. Walkspeed100.BorderSizePixel = 0
  80. Walkspeed100.Position = UDim2.new(0, 0, 0.845755994, 0)
  81. Walkspeed100.Size = UDim2.new(0, 150, 0, 28)
  82. Walkspeed100.Font = Enum.Font.SourceSans
  83. Walkspeed100.Text = "Walkspeed 100"
  84. Walkspeed100.TextColor3 = Color3.new(1, 1, 1)
  85. Walkspeed100.TextSize = 14
  86. -- Scripts:
  87. function SCRIPT_TSWM80_FAKESCRIPT() -- Frame.Script
  88. local script = Instance.new('Script')
  89. script.Parent = Frame
  90. local fram = script.Parent
  91.  
  92. fram.Selectable = true
  93. fram.Active = true
  94. fram.Draggable = true
  95.  
  96. script.Parent.RemoveRed.MouseButton1Click:Connect(function()
  97. game.Workspace.RedSecurityGate:Destroy()
  98. game.Workspace.redSecurityGateBoundaries:Destroy()
  99. end)
  100.  
  101. script.Parent.RemoveBlue.MouseButton1Click:Connect(function()
  102. game.Workspace.BlueSecurityGate:Destroy()
  103. game.Workspace.blueSecurityGateBoundaries:Destroy()
  104. end)
  105.  
  106. script.Parent.TeleportRed.MouseButton1Click:Connect(function()
  107. local me = game.Players.LocalPlayer.Character
  108.  
  109. me.HumanoidRootPart.CFrame = CFrame.new(238.02, 4.19, -145.99)
  110. end)
  111.  
  112. script.Parent.TeleportBlue.MouseButton1Click:Connect(function()
  113. local me = game.Players.LocalPlayer.Character
  114.  
  115. me.HumanoidRootPart.CFrame = CFrame.new(-230, 4.19, -145.99)
  116. end)
  117.  
  118. script.Parent.Walkspeed100.MouseButton1Click:Connect(function()
  119. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100
  120. end)
  121.  
  122. end
  123. coroutine.resume(coroutine.create(SCRIPT_TSWM80_FAKESCRIPT))
Add Comment
Please, Sign In to add comment