Advertisement
QwertyHacker

super power training simulator script hub

Aug 26th, 2022
3,189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.35 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Main = Instance.new("Frame")
  8. local Close = Instance.new("TextButton")
  9. local Split = Instance.new("TextButton")
  10. local GUI = Instance.new("TextButton")
  11. local Farm = Instance.new("TextButton")
  12.  
  13. --Properties:
  14.  
  15. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  16. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  17.  
  18. Main.Name = "Main"
  19. Main.Parent = ScreenGui
  20. Main.Active = true
  21. Main.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  22. Main.Position = UDim2.new(0.172205433, 0, 0.181992337, 0)
  23. Main.Size = UDim2.new(0, 160, 0, 160)
  24.  
  25. Close.Name = "Close"
  26. Close.Parent = Main
  27. Close.BackgroundColor3 = Color3.fromRGB(10, 10, 10)
  28. Close.Position = UDim2.new(-0.118483424, 0, -0.141104221, 0)
  29. Close.Size = UDim2.new(0, 50, 0, 50)
  30. Close.Font = Enum.Font.SourceSans
  31. Close.Text = "X"
  32. Close.TextColor3 = Color3.fromRGB(255, 0, 0)
  33. Close.TextSize = 90.000
  34.  
  35. Split.Name = "Split"
  36. Split.Parent = Main
  37. Split.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  38. Split.Position = UDim2.new(0, 0, 0.496702492, 0)
  39. Split.Size = UDim2.new(0, 80, 0, 80)
  40. Split.Font = Enum.Font.SourceSans
  41. Split.Text = "Split"
  42. Split.TextColor3 = Color3.fromRGB(0, 0, 0)
  43. Split.TextSize = 50.000
  44.  
  45. GUI.Name = "GUI"
  46. GUI.Parent = Main
  47. GUI.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  48. GUI.Position = UDim2.new(0.5, 0, 0.496702492, 0)
  49. GUI.Size = UDim2.new(0, 80, 0, 80)
  50. GUI.Font = Enum.Font.SourceSans
  51. GUI.Text = "GUI"
  52. GUI.TextColor3 = Color3.fromRGB(0, 0, 0)
  53. GUI.TextSize = 50.000
  54.  
  55. Farm.Name = "Farm"
  56. Farm.Parent = Main
  57. Farm.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  58. Farm.Position = UDim2.new(0.5, 0, -0.00329750776, 0)
  59. Farm.Size = UDim2.new(0, 80, 0, 80)
  60. Farm.Font = Enum.Font.SourceSans
  61. Farm.Text = "Farm"
  62. Farm.TextColor3 = Color3.fromRGB(0, 0, 0)
  63. Farm.TextSize = 50.000
  64.  
  65. Main.Draggable = true
  66. Main.Active = true
  67. Main.Visible = true
  68. Close.MouseButton1Click:Connect(function()
  69.     Main.Visible = false
  70.     Main.Active = false
  71. end)
  72. Split.MouseButton1Click:Connect(function()
  73.     game:service'Players'.LocalPlayer.Character.UpperTorso.Waist:remove()
  74. end)
  75. Farm.MouseButton1Click:Connect(function()
  76.     loadstring(game:HttpGet("https://pastebin.com/raw/3LcJV1iW", true))()
  77. end)
  78. GUI.MouseButton1Click:Connect(function()
  79.     loadstring(game:HttpGet('https://pastebin.com/raw/D9btNZUr', true))()
  80. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement