ShanuGaming

Inf jump

Aug 5th, 2023
19,995
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.80 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local InfJumpGui = Instance.new("ScreenGui")
  7. local Main = Instance.new("Frame")
  8. local Top = Instance.new("Frame")
  9. local TextLabel = Instance.new("TextLabel")
  10. local close = Instance.new("TextButton")
  11. local InfiniteJump = Instance.new("TextButton")
  12. local infjumpenabled = false
  13. --Properties:
  14.  
  15. InfJumpGui.Name = "InfJumpGui"
  16. InfJumpGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  17. InfJumpGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  18.  
  19. Main.Name = "Main"
  20. Main.Parent = InfJumpGui
  21. Main.BackgroundColor3 = Color3.fromRGB(47, 47, 47)
  22. Main.Position = UDim2.new(0.414008319, 0, 0.424691409, 0)
  23. Main.Size = UDim2.new(0.171983361, 0, 0.0987654254, 0)
  24.  
  25. Top.Name = "Top"
  26. Top.Parent = Main
  27. Top.BackgroundColor3 = Color3.fromRGB(54, 54, 54)
  28. Top.BorderSizePixel = 0
  29. Top.Size = UDim2.new(1, 0, 0.231244698, 0)
  30.  
  31. TextLabel.Parent = Top
  32. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  33. TextLabel.BackgroundTransparency = 1.000
  34. TextLabel.Size = UDim2.new(0.92806381, 0, 1, 0)
  35. TextLabel.Font = Enum.Font.Code
  36. TextLabel.Text = "Infinite Jump by mug#1941"
  37. TextLabel.TextColor3 = Color3.fromRGB(74, 74, 74)
  38. TextLabel.TextScaled = true
  39. TextLabel.TextSize = 14.000
  40. TextLabel.TextWrapped = true
  41.  
  42. close.Name = "close"
  43. close.Parent = Top
  44. close.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  45. close.BackgroundTransparency = 1.000
  46. close.Position = UDim2.new(0.946004272, 0, 0, 0)
  47. close.Size = UDim2.new(0.0539956801, 0, 1, 0)
  48. close.Font = Enum.Font.Code
  49. close.Text = "X"
  50. close.TextColor3 = Color3.fromRGB(74, 74, 74)
  51. close.TextScaled = true
  52. close.TextSize = 14.000
  53. close.TextWrapped = true
  54.  
  55. InfiniteJump.Name = "InfiniteJump"
  56. InfiniteJump.Parent = Main
  57. InfiniteJump.BackgroundColor3 = Color3.fromRGB(58, 58, 58)
  58. InfiniteJump.BorderColor3 = Color3.fromRGB(74, 74, 74)
  59. InfiniteJump.Position = UDim2.new(0.112903222, 0, 0.325633258, 1)
  60. InfiniteJump.Size = UDim2.new(0.774193406, 0, 0.535669923, 0)
  61. InfiniteJump.Font = Enum.Font.Code
  62. InfiniteJump.Text = "Disabled"
  63. InfiniteJump.TextColor3 = Color3.fromRGB(74, 74, 74)
  64. InfiniteJump.TextSize = 24.000
  65. InfiniteJump.TextWrapped = true
  66.  
  67. -- Scripts:
  68.  
  69. local function CFFF_fake_script() -- close.LocalScript
  70. local script = Instance.new('LocalScript', close)
  71.  
  72. script.Parent.MouseButton1Click:Connect(function()
  73. local frame = script.Parent.Parent.Parent
  74. frame:TweenPosition(UDim2.new(0.4, 0,1.5, 0))
  75. infjumpenabled = false
  76. wait(1)
  77. frame.Parent:Destroy()
  78. end)
  79. end
  80. coroutine.wrap(CFFF_fake_script)()
  81. local function VESU_fake_script() -- InfiniteJump.EnableDisableInfJump
  82. local script = Instance.new('LocalScript', InfiniteJump)
  83.  
  84.  
  85. script.Parent.MouseButton1Click:Connect(function()
  86. if infjumpenabled == false then
  87. infjumpenabled = true
  88. script.Parent.Text = "Enabled"
  89. elseif infjumpenabled == true then
  90. infjumpenabled = false
  91. script.Parent.Text = "Disabled"
  92. end
  93. end)
  94. end
  95. coroutine.wrap(VESU_fake_script)()
  96. local function GSJXM_fake_script() -- Main.Draggable
  97. local script = Instance.new('LocalScript', Main)
  98.  
  99. local Frame = script.Parent
  100. Frame.Selectable = true
  101. Frame.Active = true
  102. Frame.Draggable = true
  103. end
  104. coroutine.wrap(GSJXM_fake_script)()
  105. local function MZUWYOR_fake_script() -- Main.Opening
  106. local script = Instance.new('LocalScript', Main)
  107.  
  108. script.Parent.Position = UDim2.new(0.33, 0,2, 0)
  109. script.Parent:TweenPosition(UDim2.new(0.33, 0,0.3, 0))
  110. end
  111. coroutine.wrap(MZUWYOR_fake_script)()
  112. local function HLKTLMK_fake_script() -- Main.infjumpscript
  113. local script = Instance.new('LocalScript', Main)
  114.  
  115. game:GetService("UserInputService").JumpRequest:Connect(function()
  116. if infjumpenabled == true then
  117. game.Players.LocalPlayer.Character:FindFirstChild("Humanoid"):ChangeState("Jumping")
  118. end
  119. end)
  120. end
  121. coroutine.wrap(HLKTLMK_fake_script)()
Comments
  • peterpetper
    61 days
    # BNF 3.80 KB | 0 0
    1. -- Gui to Lua
    2. -- Version: 3.2
    3.  
    4. -- Instances:
    5.  
    6. local InfJumpGui = Instance.new("ScreenGui")
    7. local Main = Instance.new("Frame")
    8. local Top = Instance.new("Frame")
    9. local TextLabel = Instance.new("TextLabel")
    10. local close = Instance.new("TextButton")
    11. local InfiniteJump = Instance.new("TextButton")
    12. local infjumpenabled = false
    13. --Properties:
    14.  
    15. InfJumpGui.Name = "InfJumpGui"
    16. InfJumpGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
    17. InfJumpGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
    18.  
    19. Main.Name = "Main"
    20. Main.Parent = InfJumpGui
    21. Main.BackgroundColor3 = Color3.fromRGB(47, 47, 47)
    22. Main.Position = UDim2.new(0.414008319, 0, 0.424691409, 0)
    23. Main.Size = UDim2.new(0.171983361, 0, 0.0987654254, 0)
    24.  
    25. Top.Name = "Top"
    26. Top.Parent = Main
    27. Top.BackgroundColor3 = Color3.fromRGB(54, 54, 54)
    28. Top.BorderSizePixel = 0
    29. Top.Size = UDim2.new(1, 0, 0.231244698, 0)
    30.  
    31. TextLabel.Parent = Top
    32. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
    33. TextLabel.BackgroundTransparency = 1.000
    34. TextLabel.Size = UDim2.new(0.92806381, 0, 1, 0)
    35. TextLabel.Font = Enum.Font.Code
    36. TextLabel.Text = "Infinite Jump by mug#1941"
    37. TextLabel.TextColor3 = Color3.fromRGB(74, 74, 74)
    38. TextLabel.TextScaled = true
    39. TextLabel.TextSize = 14.000
    40. TextLabel.TextWrapped = true
    41.  
    42. close.Name = "close"
    43. close.Parent = Top
    44. close.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
    45. close.BackgroundTransparency = 1.000
    46. close.Position = UDim2.new(0.946004272, 0, 0, 0)
    47. close.Size = UDim2.new(0.0539956801, 0, 1, 0)
    48. close.Font = Enum.Font.Code
    49. close.Text = "X"
    50. close.TextColor3 = Color3.fromRGB(74, 74, 74)
    51. close.TextScaled = true
    52. close.TextSize = 14.000
    53. close.TextWrapped = true
    54.  
    55. InfiniteJump.Name = "InfiniteJump"
    56. InfiniteJump.Parent = Main
    57. InfiniteJump.BackgroundColor3 = Color3.fromRGB(58, 58, 58)
    58. InfiniteJump.BorderColor3 = Color3.fromRGB(74, 74, 74)
    59. InfiniteJump.Position = UDim2.new(0.112903222, 0, 0.325633258, 1)
    60. InfiniteJump.Size = UDim2.new(0.774193406, 0, 0.535669923, 0)
    61. InfiniteJump.Font = Enum.Font.Code
    62. InfiniteJump.Text = "Disabled"
    63. InfiniteJump.TextColor3 = Color3.fromRGB(74, 74, 74)
    64. InfiniteJump.TextSize = 24.000
    65. InfiniteJump.TextWrapped = true
    66.  
    67. -- Scripts:
    68.  
    69. local function CFFF_fake_script() -- close.LocalScript
    70.     local script = Instance.new('LocalScript', close)
    71.  
    72.     script.Parent.MouseButton1Click:Connect(function()
    73.         local frame = script.Parent.Parent.Parent
    74.         frame:TweenPosition(UDim2.new(0.4, 0,1.5, 0))
    75.         infjumpenabled = false
    76.         wait(1)
    77.         frame.Parent:Destroy()
    78.     end)
    79. end
    80. coroutine.wrap(CFFF_fake_script)()
    81. local function VESU_fake_script() -- InfiniteJump.EnableDisableInfJump
    82.     local script = Instance.new('LocalScript', InfiniteJump)
    83.  
    84.    
    85.     script.Parent.MouseButton1Click:Connect(function()
    86.         if infjumpenabled == false then
    87.             infjumpenabled = true
    88.             script.Parent.Text = "Enabled"
    89.         elseif infjumpenabled == true then
    90.             infjumpenabled = false
    91.             script.Parent.Text = "Disabled"
    92.         end
    93.     end)
    94. end
    95. coroutine.wrap(VESU_fake_script)()
    96. local function GSJXM_fake_script() -- Main.Draggable
    97.     local script = Instance.new('LocalScript', Main)
    98.  
    99.     local Frame = script.Parent
    100.     Frame.Selectable = true
    101.     Frame.Active = true
    102.     Frame.Draggable = true
    103. end
    104. coroutine.wrap(GSJXM_fake_script)()
    105. local function MZUWYOR_fake_script() -- Main.Opening
    106.     local script = Instance.new('LocalScript', Main)
    107.  
    108.     script.Parent.Position = UDim2.new(0.33, 0,2, 0)
    109.     script.Parent:TweenPosition(UDim2.new(0.33, 0,0.3, 0))
    110. end
    111. coroutine.wrap(MZUWYOR_fake_script)()
    112. local function HLKTLMK_fake_script() -- Main.infjumpscript
    113.     local script = Instance.new('LocalScript', Main)
    114.  
    115.     game:GetService("UserInputService").JumpRequest:Connect(function()
    116.         if infjumpenabled == true then
    117.             game.Players.LocalPlayer.Character:FindFirstChild("Humanoid"):ChangeState("Jumping")
    118.         end
    119.     end)
    120. end
    121. coroutine.wrap(HLKTLMK_fake_script)()
Add Comment
Please, Sign In to add comment