Upscalefanatic3

(Roblox) Lag Test 2020 GUI

Mar 23rd, 2020
257
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. -- READ IMPORTANT!
  2.  
  3. -- By 5C_G (dont report xd)
  4. -- Note tp far from obby wont work if your moving around. DONT move and you will get tp far from obby
  5. -- What does tp far from obby do? It teleports you far from the map and you will get way less lag
  6. -- Tp To obby might be broken. If it is you can youst reset :)
  7. -- This script MIGHT get outdated but I will try my best to update it :)
  8. -- WARNING: IF YOU GET BANNED FROM THE GAME ITS NOT MY FAULT
  9.  
  10. local baseplate = game.Workspace.Baseplate
  11. local spawn_ = game.Workspace.SpawnLocation
  12. local UI = Instance.new("ScreenGui")
  13. local MainFrame = Instance.new("Frame")
  14. local TpFar = Instance.new("TextButton")
  15. local TpLobby = Instance.new("TextButton")
  16. local SuperJump = Instance.new("TextButton")
  17. local SuperSpeed = Instance.new("TextButton")
  18.  
  19. UI.Parent = game.CoreGui
  20. MainFrame.Parent = UI
  21. TpFar.Parent = MainFrame
  22. TpLobby.Parent = MainFrame
  23. SuperJump.Parent = MainFrame
  24. SuperSpeed.Parent = MainFrame
  25.  
  26. MainFrame.Size = UDim2.new(0, 271,0, 357)
  27. MainFrame.Position = UDim2.new(0.029, 0,0.244, 0)
  28. MainFrame.BackgroundTransparency = 0.5
  29. MainFrame.BorderSizePixel = 10
  30.  
  31. TpFar.Size = UDim2.new(0, 200,0, 50)
  32. TpFar.Position = UDim2.new(0.128, 0,0.275, 0)
  33. TpFar.TextScaled = true
  34. TpFar.Text = "Tp Far From Lag"
  35. TpFar.BackgroundTransparency = 1
  36.  
  37. TpLobby.Size = UDim2.new(0, 200,0, 50)
  38. TpLobby.Position = UDim2.new(0.128, 0,0.485, 0)
  39. TpLobby.TextScaled = true
  40. TpLobby.Text = "Tp To Lobby"
  41. TpLobby.BackgroundTransparency = 1
  42.  
  43. SuperJump.Size = UDim2.new(0, 200,0, 50)
  44. SuperJump.Position = UDim2.new(0.128, 0,0.737, 0)
  45. SuperJump.TextScaled = true
  46. SuperJump.Text = "Super Jump!"
  47. SuperJump.BackgroundTransparency = 1
  48.  
  49. SuperSpeed.Size = UDim2.new(0, 200,0, 50)
  50. SuperSpeed.Position = UDim2.new(0.128, 0,0.028, 0)
  51. SuperSpeed.TextScaled = true
  52. SuperSpeed.Text = "Super Speed!"
  53. SuperSpeed.BackgroundTransparency = 1
  54.  
  55. baseplate.Touched:Connect(function(hit)
  56.     local player = hit.Parent
  57.     TpFar.Activated:Connect(function()
  58.         local FarPart = Instance.new("Part", workspace)
  59.         FarPart.Anchored = true
  60.         FarPart.Size = Vector3.new(15.33, 1, 19.78)
  61.         FarPart.Position = Vector3.new(3.35, 0.5, -1854.822)
  62.         wait(2)
  63.         player.HumanoidRootPart.Position = Vector3.new(3.35, 8.439, -2990.888)
  64. end)
  65.     TpLobby.Activated:Connect(function()
  66.         player.HumanoidRootPart.Position = Vector3.new(-148.64, 0.5, -50.69)
  67. end)
  68.     SuperJump.Activated:Connect(function()
  69.         player.Humanoid.JumpPower = 300 -- YOU CAN CHANGE THIS :)
  70. end)
  71.     SuperSpeed.Activated:Connect(function()
  72.         player.Humanoid.WalkSpeed = 100 -- YOU CAN CHANGE THIS :)
  73. end)
  74.  
  75. end)
Add Comment
Please, Sign In to add comment