Advertisement
Guest User

Untitled

a guest
Dec 11th, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.39 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3
  3.  
  4. -- Instances:
  5.  
  6. local HackGui = Instance.new("ScreenGui")
  7. local Main = Instance.new("Frame")
  8. local SpeedGui = Instance.new("TextButton")
  9. local TextLabel = Instance.new("TextLabel")
  10. local JumpGui = Instance.new("TextButton")
  11. local SpeedGui_2 = Instance.new("Frame")
  12. local HighSpeed = Instance.new("TextButton")
  13. local NormalSpeed = Instance.new("TextButton")
  14. local Close = Instance.new("TextButton")
  15. local JumpGui_2 = Instance.new("Frame")
  16. local HighJump = Instance.new("TextButton")
  17. local LowJump = Instance.new("TextButton")
  18. local Close_2 = Instance.new("TextButton")
  19.  
  20. --Properties:
  21.  
  22. HackGui.Name = "Hack Gui"
  23. HackGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  24. HackGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  25.  
  26. Main.Name = "Main"
  27. Main.Parent = HackGui
  28. Main.BackgroundColor3 = Color3.new(1, 1, 1)
  29. Main.Position = UDim2.new(0, 0, 0.468889803, 0)
  30. Main.Size = UDim2.new(0, 292, 0, 372)
  31.  
  32. SpeedGui.Name = "SpeedGui"
  33. SpeedGui.Parent = Main
  34. SpeedGui.BackgroundColor3 = Color3.new(1, 0, 0.0156863)
  35. SpeedGui.Position = UDim2.new(0.151716754, 0, 0.128639221, 0)
  36. SpeedGui.Size = UDim2.new(0, 200, 0, 50)
  37. SpeedGui.Font = Enum.Font.SourceSans
  38. SpeedGui.Text = "Speed Gui"
  39. SpeedGui.TextColor3 = Color3.new(0, 0, 1)
  40. SpeedGui.TextScaled = true
  41. SpeedGui.TextSize = 14
  42. SpeedGui.TextWrapped = true
  43.  
  44. TextLabel.Parent = Main
  45. TextLabel.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  46. TextLabel.Position = UDim2.new(0.154955804, 0, 0.0155478418, 0)
  47. TextLabel.Size = UDim2.new(0, 200, 0, 31)
  48. TextLabel.Font = Enum.Font.SourceSans
  49. TextLabel.Text = "Abuse Gui"
  50. TextLabel.TextColor3 = Color3.new(0, 0, 1)
  51. TextLabel.TextScaled = true
  52. TextLabel.TextSize = 14
  53. TextLabel.TextWrapped = true
  54.  
  55. JumpGui.Name = "JumpGui"
  56. JumpGui.Parent = Main
  57. JumpGui.BackgroundColor3 = Color3.new(1, 0, 0.0156863)
  58. JumpGui.Position = UDim2.new(0.151716754, 0, 0.263047814, 0)
  59. JumpGui.Size = UDim2.new(0, 200, 0, 50)
  60. JumpGui.Font = Enum.Font.SourceSans
  61. JumpGui.Text = "Jump Gui"
  62. JumpGui.TextColor3 = Color3.new(0, 0, 1)
  63. JumpGui.TextScaled = true
  64. JumpGui.TextSize = 14
  65. JumpGui.TextWrapped = true
  66.  
  67. SpeedGui_2.Name = "SpeedGui"
  68. SpeedGui_2.Parent = HackGui
  69. SpeedGui_2.BackgroundColor3 = Color3.new(1, 1, 1)
  70. SpeedGui_2.Position = UDim2.new(0.694604516, 0, 0.651925802, 0)
  71. SpeedGui_2.Size = UDim2.new(0, 291, 0, 243)
  72. SpeedGui_2.Visible = false
  73.  
  74. HighSpeed.Name = "HighSpeed"
  75. HighSpeed.Parent = SpeedGui_2
  76. HighSpeed.BackgroundColor3 = Color3.new(1, 0, 0)
  77. HighSpeed.Position = UDim2.new(0.000360810052, 0, 0.770864189, 0)
  78. HighSpeed.Size = UDim2.new(0, 290, 0, 55)
  79. HighSpeed.Font = Enum.Font.SourceSans
  80. HighSpeed.Text = "High Speed"
  81. HighSpeed.TextColor3 = Color3.new(0, 0, 0)
  82. HighSpeed.TextScaled = true
  83. HighSpeed.TextSize = 14
  84. HighSpeed.TextWrapped = true
  85.  
  86. NormalSpeed.Name = "NormalSpeed"
  87. NormalSpeed.Parent = SpeedGui_2
  88. NormalSpeed.BackgroundColor3 = Color3.new(0, 1, 0.0313726)
  89. NormalSpeed.Position = UDim2.new(-0.0030756162, 0, 0.470452666, 0)
  90. NormalSpeed.Size = UDim2.new(0, 290, 0, 55)
  91. NormalSpeed.Font = Enum.Font.SourceSans
  92. NormalSpeed.Text = "Low Speed"
  93. NormalSpeed.TextColor3 = Color3.new(0, 0, 0)
  94. NormalSpeed.TextScaled = true
  95. NormalSpeed.TextSize = 14
  96. NormalSpeed.TextWrapped = true
  97.  
  98. Close.Name = "Close"
  99. Close.Parent = SpeedGui_2
  100. Close.BackgroundColor3 = Color3.new(1, 0, 0)
  101. Close.Position = UDim2.new(0.838487983, 0, 0, 0)
  102. Close.Size = UDim2.new(0, 47, 0, 50)
  103. Close.Font = Enum.Font.SourceSans
  104. Close.Text = "X"
  105. Close.TextColor3 = Color3.new(0, 0, 0)
  106. Close.TextScaled = true
  107. Close.TextSize = 14
  108. Close.TextWrapped = true
  109.  
  110. JumpGui_2.Name = "JumpGui"
  111. JumpGui_2.Parent = HackGui
  112. JumpGui_2.BackgroundColor3 = Color3.new(1, 1, 1)
  113. JumpGui_2.Position = UDim2.new(0.847564161, 0, 0.65335232, 0)
  114. JumpGui_2.Size = UDim2.new(0, 291, 0, 243)
  115. JumpGui_2.Visible = false
  116.  
  117. HighJump.Name = "HighJump"
  118. HighJump.Parent = JumpGui_2
  119. HighJump.BackgroundColor3 = Color3.new(1, 0, 0)
  120. HighJump.Position = UDim2.new(0.000360810052, 0, 0.770864189, 0)
  121. HighJump.Size = UDim2.new(0, 290, 0, 55)
  122. HighJump.Font = Enum.Font.SourceSans
  123. HighJump.Text = "High Jump"
  124. HighJump.TextColor3 = Color3.new(0, 0, 0)
  125. HighJump.TextScaled = true
  126. HighJump.TextSize = 14
  127. HighJump.TextWrapped = true
  128.  
  129. LowJump.Name = "LowJump"
  130. LowJump.Parent = JumpGui_2
  131. LowJump.BackgroundColor3 = Color3.new(0, 1, 0.0313726)
  132. LowJump.Position = UDim2.new(-0.0030756162, 0, 0.470452666, 0)
  133. LowJump.Size = UDim2.new(0, 290, 0, 55)
  134. LowJump.Font = Enum.Font.SourceSans
  135. LowJump.Text = "Low Jump"
  136. LowJump.TextColor3 = Color3.new(0, 0, 0)
  137. LowJump.TextScaled = true
  138. LowJump.TextSize = 14
  139. LowJump.TextWrapped = true
  140.  
  141. Close_2.Name = "Close"
  142. Close_2.Parent = JumpGui_2
  143. Close_2.BackgroundColor3 = Color3.new(1, 0, 0)
  144. Close_2.Position = UDim2.new(0.838487983, 0, 0, 0)
  145. Close_2.Size = UDim2.new(0, 47, 0, 50)
  146. Close_2.Font = Enum.Font.SourceSans
  147. Close_2.Text = "X"
  148. Close_2.TextColor3 = Color3.new(0, 0, 0)
  149. Close_2.TextScaled = true
  150. Close_2.TextSize = 14
  151. Close_2.TextWrapped = true
  152.  
  153. -- Scripts:
  154.  
  155. local function RTRRZID_fake_script() -- SpeedGui.LocalScript
  156. local script = Instance.new('LocalScript', SpeedGui)
  157.  
  158. local frame = script.Parent.Parent.Parent.SpeedGui
  159. local open = false
  160.  
  161. script.Parent.MouseButton1Click:Connect(function()
  162. if frame.Visible == false then
  163. frame.Visible = true
  164. else
  165. frame.Visible = false
  166.  
  167. end
  168.  
  169. end)
  170. end
  171. coroutine.wrap(RTRRZID_fake_script)()
  172. local function YTGSTDE_fake_script() -- JumpGui.LocalScript
  173. local script = Instance.new('LocalScript', JumpGui)
  174.  
  175. local frame = script.Parent.Parent.Parent.JumpGui
  176. local open = false
  177.  
  178. script.Parent.MouseButton1Click:Connect(function()
  179. if frame.Visible == false then
  180. frame.Visible = true
  181. else
  182. frame.Visible = false
  183.  
  184. end
  185.  
  186. end)
  187. end
  188. coroutine.wrap(YTGSTDE_fake_script)()
  189. local function GAROV_fake_script() -- HighSpeed.LocalScript
  190. local script = Instance.new('LocalScript', HighSpeed)
  191.  
  192. script.Parent.MouseButton1Click:Connect(function()
  193. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 85
  194.  
  195.  
  196. end)
  197. end
  198. coroutine.wrap(GAROV_fake_script)()
  199. local function HXQUD_fake_script() -- NormalSpeed.LocalScript
  200. local script = Instance.new('LocalScript', NormalSpeed)
  201.  
  202. script.Parent.MouseButton1Click:Connect(function()
  203. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  204. end)
  205. end
  206. coroutine.wrap(HXQUD_fake_script)()
  207. local function HTETLM_fake_script() -- Close.Close
  208. local script = Instance.new('LocalScript', Close)
  209.  
  210. script.Parent.MouseButton1Click:Connect(function()
  211. script.Parent.Parent.Parent.SpeedGui.Visible = false
  212. end)
  213. end
  214. coroutine.wrap(HTETLM_fake_script)()
  215. local function RXUQHZG_fake_script() -- HighJump.LocalScript
  216. local script = Instance.new('LocalScript', HighJump)
  217.  
  218. script.Parent.MouseButton1Click:Connect(function()
  219. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 85
  220.  
  221.  
  222. end)
  223. end
  224. coroutine.wrap(RXUQHZG_fake_script)()
  225. local function YMHPOY_fake_script() -- LowJump.LocalScript
  226. local script = Instance.new('LocalScript', LowJump)
  227.  
  228. script.Parent.MouseButton1Click:Connect(function()
  229. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 32
  230. end)
  231. end
  232. coroutine.wrap(YMHPOY_fake_script)()
  233. local function JTWP_fake_script() -- Close_2.Close
  234. local script = Instance.new('LocalScript', Close_2)
  235.  
  236. script.Parent.MouseButton1Click:Connect(function()
  237. script.Parent.Parent.Parent.JumpGui.Visible = false
  238. end)
  239. end
  240. coroutine.wrap(JTWP_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement