Advertisement
Guest User

TowerOfHell Jaypee Script

a guest
Jul 12th, 2019
286
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.32 KB | None | 0 0
  1. game:GetService("StarterGui"):SetCore("SendNotification", {Title = "GTTOKENGT", Text ="Hell Yeah"})
  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 = "Welcome : ".. 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: Jaypee"
  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 tp_namedplayer = name.Text
  80. local tp_player = game:GetService("Players")[tp_namedplayer]
  81. local PLR = game:GetService("Players").LocalPlayer
  82. local p = name.Text
  83.  
  84. if tp_player then
  85. for i = 1,20 do
  86. wait()
  87. PLR.Character.HumanoidRootPart.CFrame = tp_player.Character.HumanoidRootPart.CFrame + Vector3.new(0, 3, 0)
  88. end
  89. end
  90. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement