30IRISKA10

Inf jump gui

May 9th, 2022
690
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.20 KB | None | 0 0
  1.  
  2.  
  3. local RobloxExploit = Instance.new("ScreenGui")
  4.  
  5. local MainGUI = Instance.new("Frame")
  6.  
  7. local esp = Instance.new("TextButton")
  8.  
  9. local TextLabel = Instance.new("TextLabel")
  10.  
  11. local close = Instance.new("TextButton")
  12.  
  13. local opengui = Instance.new("Frame")
  14.  
  15. local open = Instance.new("TextButton")
  16.  
  17. --Properties:
  18.  
  19. RobloxExploit.Name = "pingeon inf jump"
  20.  
  21. RobloxExploit.Parent = game.CoreGui -- ben
  22.  
  23.  
  24. MainGUI.Active = true
  25.  
  26. MainGUI.Draggable = true -- ben
  27.  
  28.  
  29. MainGUI.Name = "MainGUI"
  30.  
  31. MainGUI.Parent = RobloxExploit
  32.  
  33. MainGUI.BackgroundColor3 = Color3.new(1, 1, 1)
  34.  
  35. MainGUI.Position = UDim2.new(0.393584222, 0, 0.253071249, 0)
  36.  
  37. MainGUI.Size = UDim2.new(0, 345, 0, 401)
  38.  
  39. MainGUI.Visible = false
  40.  
  41.  
  42.  
  43. esp.Name = "esp"
  44.  
  45. esp.Parent = MainGUI
  46.  
  47. esp.BackgroundColor3 = Color3.new(1, 1, 1)
  48.  
  49. esp.BorderSizePixel = 0
  50.  
  51. esp.Position = UDim2.new(0.136231884, 0, 0.376558602, 0)
  52.  
  53. esp.Size = UDim2.new(0, 251, 0, 100)
  54.  
  55. esp.Font = Enum.Font.SourceSansLight
  56.  
  57. esp.Text = "Activate"
  58.  
  59. esp.TextColor3 = Color3.new(0, 0, 0)
  60.  
  61. esp.TextScaled = true
  62.  
  63. esp.TextSize = 14
  64.  
  65. esp.TextWrapped = true
  66.  
  67. esp.MouseButton1Click:connect(function() -- Make sure its mouse button 1 click and not any other one
  68.  
  69. game:GetService("UserInputService").JumpRequest:connect(function() ---- inf jump
  70. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  71. end)
  72.  
  73.  
  74.  
  75. print("Working")
  76.  
  77.  
  78.  
  79. -- ignore
  80. end)
  81.  
  82.  
  83.  
  84. TextLabel.Parent = MainGUI
  85.  
  86. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  87.  
  88. TextLabel.BorderSizePixel = 0
  89.  
  90. TextLabel.Position = UDim2.new(0.0521739125, 0, 0.0249376558, 0)
  91.  
  92. TextLabel.Size = UDim2.new(0, 308, 0, 50)
  93.  
  94. TextLabel.Font = Enum.Font.SourceSansSemibold
  95.  
  96. TextLabel.Text = "pingeon inf jump"
  97.  
  98. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  99.  
  100. TextLabel.TextScaled = true
  101.  
  102. TextLabel.TextSize = 14
  103.  
  104. TextLabel.TextWrapped = true
  105.  
  106. -- ben
  107.  
  108.  
  109. close.Name = "close"
  110.  
  111. close.Parent = MainGUI
  112.  
  113. close.BackgroundColor3 = Color3.new(1, 1, 1)
  114.  
  115. close.BorderSizePixel = 0
  116.  
  117. close.Position = UDim2.new(0.910144925, 0, 0.0249376558, 0)
  118.  
  119. close.Size = UDim2.new(0, 25, 0, 25)
  120.  
  121. close.Font = Enum.Font.SourceSansBold
  122.  
  123. close.Text = "X"
  124.  
  125. close.TextColor3 = Color3.new(0, 0, 0)
  126.  
  127. close.TextScaled = true
  128.  
  129. close.TextSize = 14
  130.  
  131. close.TextWrapped = true
  132.  
  133. close.MouseButton1Click:connect(function() -- script to close the gui
  134.  
  135. MainGUI.Visible = false -- makes the main gui invisible
  136.  
  137. opengui.Visible = true -- makes the open button visible again
  138.  
  139. end)
  140.  
  141.  
  142.  
  143. opengui.Name = "opengui"
  144.  
  145. opengui.Parent = RobloxExploit
  146.  
  147. opengui.BackgroundColor3 = Color3.new(1, 1, 1)
  148.  
  149. opengui.Position = UDim2.new(0.141887724, 0, 0.963144958, 0)
  150.  
  151. opengui.Size = UDim2.new(0, 100, 0, 30)
  152.  
  153.  
  154.  
  155. open.Name = "open"
  156.  
  157. open.Parent = opengui
  158.  
  159. open.BackgroundColor3 = Color3.new(1, 1, 1)
  160.  
  161. open.Size = UDim2.new(0, 100, 0, 30)
  162.  
  163. open.Font = Enum.Font.SourceSansLight
  164.  
  165. open.Text = "OpenGUI"
  166.  
  167. open.TextColor3 = Color3.new(0, 0, 0)
  168.  
  169. open.TextScaled = true
  170.  
  171. open.TextSize = 14
  172.  
  173. open.TextWrapped = true
  174.  
  175. open.MouseButton1Click:connect(function() -- ben
  176. MainGUI.Visible = true -- ben
  177. opengui.Visible = false -- ben
  178. end)
  179.  
  180.  
  181.  
  182. print("Working") -- ben
  183.  
  184.  
  185. -- ben
Advertisement
Add Comment
Please, Sign In to add comment