ChaosityYT

Tower Of Hell Dark Devs GUI

Jun 5th, 2019
2,760
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.18 KB | None | 0 0
  1. game:GetService("StarterGui"):SetCore("SendNotification", {Title = "FunTrat0r On V3rm", Text = "NOT A BAD ONE!!!"})
  2. local royale = Instance.new("ScreenGui")
  3. local main = Instance.new("Frame")
  4. local hello = Instance.new("TextLabel")
  5. local place = Instance.new("TextButton")
  6. local save = Instance.new("TextButton")
  7. local darkdevs = Instance.new("TextLabel")
  8. local name = Instance.new("TextBox")
  9. royale.Name = "royale"
  10. royale.Parent = game.CoreGui
  11. main.Name = "main"
  12. main.Parent = royale
  13. main.Active = true
  14. main.BackgroundColor3 = Color3.new(0.0117647, 0.160784, 0.223529)
  15. main.BorderSizePixel = 0
  16. main.Position = UDim2.new(0.379414737, 0, 0.475655437, 0)
  17. main.Size = UDim2.new(0, 230, 0, 124)
  18. hello.Name = "hello"
  19. hello.Parent = main
  20. hello.BackgroundColor3 = Color3.new(0.0117647, 0.160784, 0.223529)
  21. hello.BorderColor3 = Color3.new(0.0627451, 0.596078, 0.807843)
  22. hello.Position = UDim2.new(0.030837005, 0, 0.0454545468, 0)
  23. hello.Size = UDim2.new(0, 211, 0, 18)
  24. hello.Font = Enum.Font.Fantasy
  25. hello.Text = "Hello : ".. game.Players.LocalPlayer.Name
  26. hello.TextColor3 = Color3.new(1, 1, 1)
  27. hello.TextSize = 14
  28. place.Name = "place"
  29. place.Parent = main
  30. place.BackgroundColor3 = Color3.new(0.0156863, 0.278431, 0.380392)
  31. place.Position = UDim2.new(0.0485156104, 0, 0.269977987, 0)
  32. place.Size = UDim2.new(0, 199, 0, 16)
  33. place.Font = Enum.Font.Fantasy
  34. place.Text = "Win Stage"
  35. place.TextColor3 = Color3.new(1, 1, 1)
  36. place.TextSize = 14
  37. save.Name = "save"
  38. save.Parent = main
  39. save.BackgroundColor3 = Color3.new(0.0156863, 0.278431, 0.380392)
  40. save.Position = UDim2.new(0.0485156104, 0, 0.695564508, 0)
  41. save.Size = UDim2.new(0, 199, 0, 16)
  42. save.Font = Enum.Font.Fantasy
  43. save.Text = "Teleport To Player"
  44. save.TextColor3 = Color3.new(1, 1, 1)
  45. save.TextSize = 14
  46. darkdevs.Name = "darkdevs"
  47. darkdevs.Parent = main
  48. darkdevs.BackgroundColor3 = Color3.new(0.00392157, 0.541176, 0.0235294)
  49. darkdevs.BackgroundTransparency = 1
  50. darkdevs.BorderColor3 = Color3.new(0.0627451, 0.596078, 0.807843)
  51. darkdevs.Position = UDim2.new(0.0264317188, 0, 0.829545438, 0)
  52. darkdevs.Size = UDim2.new(0, 211, 0, 23)
  53. darkdevs.Font = Enum.Font.Fantasy
  54. darkdevs.Text = "Credits: FunTrat0r | DarkDevs.Pro"
  55. darkdevs.TextColor3 = Color3.new(1, 1, 1)
  56. darkdevs.TextSize = 10
  57. name.Name = "name"
  58. name.Parent = main
  59. name.BackgroundColor3 = Color3.new(0.0156863, 0.278431, 0.380392)
  60. name.BorderColor3 = Color3.new(0.0156863, 0.278431, 0.380392)
  61. name.BorderSizePixel = 0
  62. name.Position = UDim2.new(0.0565217398, 0, 0.483870983, 0)
  63. name.Size = UDim2.new(0, 195, 0, 16)
  64. name.Font = Enum.Font.Fantasy
  65. name.Text = "Player Name . . ."
  66. name.TextColor3 = Color3.new(1, 0, 0.0156863)
  67. name.TextSize = 14
  68. main.Draggable = true
  69. place.MouseButton1Down:connect(function()
  70. local plr = game.Workspace[game.Players.LocalPlayer.Name].HumanoidRootPart
  71. local path = game.Workspace
  72. for i,v in pairs(path:GetDescendants()) do
  73. if v.Name == 'Finish' then
  74. plr.CFrame = v.CFrame
  75. end
  76. end
  77. end)
  78. save.MouseButton1Down:connect(function()
  79. local plr = game.Workspace[game.Players.LocalPlayer.Name].HumanoidRootPart
  80. local path = game.Workspace
  81. for i,v in pairs(path:GetChildren()) do
  82. if v.Name == name.Text then
  83. plr.CFrame = v.UpperTorso.CFrame
  84. end
  85. end
  86. end)
Add Comment
Please, Sign In to add comment