jwjsnsns

Infinity Jump

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