Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.58 KB | None | 0 0
  1. print"this gui was made by Jeolxz but the tp to player and player name didnt work so here i am editing this script so i just tps you to the top to win :)"
  2.  
  3. game:GetService("StarterGui"):SetCore("SendNotification", {Title = "edited by pineapple#9948", Text = "got rid off stuff that dont work"})
  4. local royale = Instance.new("ScreenGui")
  5. local main = Instance.new("Frame")
  6. local hello = Instance.new("TextLabel")
  7. local place = Instance.new("TextButton")
  8. local darkdevs = Instance.new("TextLabel")
  9. local name = Instance.new("TextBox")
  10. royale.Name = "royale"
  11. royale.Parent = game.CoreGui
  12. main.Name = "main"
  13. main.Parent = royale
  14. main.Active = true
  15. main.BackgroundColor3 = Color3.new(0.0117647, 0.160784, 0.223529)
  16. main.BorderSizePixel = 0
  17. main.Position = UDim2.new(0.379414737, 0, 0.475655437, 0)
  18. main.Size = UDim2.new(0, 230, 0, 124)
  19. hello.Name = "hello"
  20. hello.Parent = main
  21. hello.BackgroundColor3 = Color3.new(0.0117647, 0.160784, 0.223529)
  22. hello.BorderColor3 = Color3.new(0.0627451, 0.596078, 0.807843)
  23. hello.Position = UDim2.new(0.030837005, 0, 0.0454545468, 0)
  24. hello.Size = UDim2.new(0, 211, 0, 18)
  25. hello.Font = Enum.Font.Fantasy
  26. hello.Text = "Welcome : ".. game.Players.LocalPlayer.Name
  27. hello.TextColor3 = Color3.new(1, 1, 1)
  28. hello.TextSize = 17
  29. place.Name = "place"
  30. place.Parent = main
  31. place.BackgroundColor3 = Color3.new(0.0156863, 0.278431, 0.380392)
  32. place.Position = UDim2.new(0.0485156104, 0, 0.269977987, 0)
  33. place.Size = UDim2.new(0, 199, 0, 16)
  34. place.Font = Enum.Font.Fantasy
  35. place.Text = "make it x2"
  36. place.TextColor3 = Color3.new(1, 1, 1)
  37. place.TextSize = 14
  38. darkdevs.Name = "darkdevs"
  39. darkdevs.Parent = main
  40. darkdevs.BackgroundColor3 = Color3.new(0.00392157, 0.541176, 0.0235294)
  41. darkdevs.BackgroundTransparency = 1
  42. darkdevs.BorderColor3 = Color3.new(0.0627451, 0.596078, 0.807843)
  43. darkdevs.Position = UDim2.new(0.0264317188, 0, 0.829545438, 0)
  44. darkdevs.Size = UDim2.new(0, 211, 0, 23)
  45. darkdevs.Font = Enum.Font.Fantasy
  46. darkdevs.Text = "Credits: pineapple#9948"
  47. darkdevs.TextColor3 = Color3.new(1, 1, 1)
  48. darkdevs.TextSize = 10
  49.  
  50. main.Draggable = true
  51. place.MouseButton1Down:connect(function()
  52. local plr = game.Workspace[game.Players.LocalPlayer.Name].HumanoidRootPart
  53. local path = game.Workspace
  54. for i,v in pairs(path:GetDescendants()) do
  55. if v.Name == 'Finish' then
  56. plr.CFrame = v.CFrame
  57. end
  58. end
  59. end)
  60. save.MouseButton1Down:connect(function()
  61. local plr = game.Workspace[game.Players.LocalPlayer.Name].HumanoidRootPart
  62. local path = game.Workspace
  63. for i,v in pairs(path:GetChildren()) do
  64. if v.Name == name.Text then
  65. plr.CFrame = v.UpperTorso.CFrame
  66. end
  67. end
  68. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement