Advertisement
foxywolf233

GET TO THE TOP! TP GUI!

Dec 24th, 2021 (edited)
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.42 KB | None | 0 0
  1. -- game https://www.roblox.com/games/6902912928/GET-TO-THE-TOP-Beta-V-1-2#
  2. -- creator jiffy_978
  3. -- if you know problems add me on Doggo#9118
  4. -- Instances:
  5.  
  6. local TPGUI = Instance.new("ScreenGui")
  7. local Main = Instance.new("Frame")
  8. local TpLabel = Instance.new("TextLabel")
  9. local TpButton = Instance.new("TextButton")
  10. local UICorner = Instance.new("UICorner")
  11. local Outline1 = Instance.new("TextLabel")
  12.  
  13. --Properties:
  14.  
  15. TPGUI.Name = "TPGUI"
  16. TPGUI.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  17. TPGUI.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  18. TPGUI.ResetOnSpawn = false
  19.  
  20. Main.Name = "Main"
  21. Main.Parent = TPGUI
  22. Main.BackgroundColor3 = Color3.fromRGB(99, 99, 99)
  23. Main.BorderSizePixel = 0
  24. Main.Position = UDim2.new(0.735679746, 0, 0.101465613, 0)
  25. Main.Size = UDim2.new(0, 199, 0, 198)
  26. Main.Active = true
  27. Main.Draggable = true
  28.  
  29. TpLabel.Name = "Tp Label"
  30. TpLabel.Parent = Main
  31. TpLabel.BackgroundColor3 = Color3.fromRGB(85, 85, 85)
  32. TpLabel.BorderColor3 = Color3.fromRGB(255, 255, 255)
  33. TpLabel.BorderSizePixel = 0
  34. TpLabel.Size = UDim2.new(0, 199, 0, 50)
  35. TpLabel.Font = Enum.Font.SourceSans
  36. TpLabel.Text = "Tp To Top"
  37. TpLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  38. TpLabel.TextScaled = true
  39. TpLabel.TextSize = 14.000
  40. TpLabel.TextWrapped = true
  41.  
  42. TpButton.Name = "TpButton"
  43. TpButton.Parent = Main
  44. TpButton.BackgroundColor3 = Color3.fromRGB(83, 83, 83)
  45. TpButton.Position = UDim2.new(0.175879389, 0, 0.383838385, 0)
  46. TpButton.Size = UDim2.new(0, 128, 0, 98)
  47. TpButton.Font = Enum.Font.SourceSans
  48. TpButton.Text = "TP"
  49. TpButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  50. TpButton.TextScaled = true
  51. TpButton.TextSize = 14.000
  52. TpButton.TextWrapped = true
  53.  
  54. UICorner.Parent = TpButton
  55.  
  56. Outline1.Name = "Outline1"
  57. Outline1.Parent = Main
  58. Outline1.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  59. Outline1.BorderColor3 = Color3.fromRGB(255, 255, 255)
  60. Outline1.Position = UDim2.new(-0.00502514839, 0, 0.25252524, 0)
  61. Outline1.Size = UDim2.new(0, 200, 0, 0)
  62. Outline1.Font = Enum.Font.SourceSans
  63. Outline1.Text = " "
  64. Outline1.TextColor3 = Color3.fromRGB(0, 0, 0)
  65. Outline1.TextSize = 14.000
  66.  
  67. -- Scripts:
  68.  
  69. local function XJNEXQW_fake_script() -- TpButton.LocalScript
  70. local script = Instance.new('LocalScript', TpButton)
  71.  
  72. script.Parent.MouseButton1Click:Connect(function()
  73. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(15, 1136, -541)
  74. end)
  75. end
  76. coroutine.wrap(XJNEXQW_fake_script)()
  77.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement