YANIS_EXPLOITS

INFINITE JUMP SCRIPT

May 8th, 2020 (edited)
55,841
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.13 KB | None | 0 0
  1. --Subscribe to 3cdx on YouTube youtube.com/channel/UCmzAUDcUY1NVZ5--_1qzK9g
  2. -- Gui to Lua
  3. -- Version: 3.2
  4.  
  5. -- Instances:
  6.  
  7. local ScreenGui = Instance.new("ScreenGui")
  8. local main = Instance.new("Frame")
  9. local TextLabel = Instance.new("TextLabel")
  10. local Frame = Instance.new("Frame")
  11. local INFJUMP = Instance.new("TextButton")
  12. local TextLabel_2 = Instance.new("TextLabel")
  13.  
  14. --Properties:
  15.  
  16. ScreenGui.Parent = game.CoreGui
  17.  
  18. main.Name = "main"
  19. main.Parent = ScreenGui
  20. main.Active = true
  21. main.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  22. main.BorderSizePixel = 0
  23. main.Position = UDim2.new(0.119258665, 0, 0, 0)
  24. main.Size = UDim2.new(0, 146, 0, 28)
  25. main.Active = true
  26. main.Draggable = false
  27.  
  28. TextLabel.Parent = main
  29. TextLabel.BackgroundColor3 = Color3.fromRGB(38, 38, 38)
  30. TextLabel.BorderSizePixel = 0
  31. TextLabel.Size = UDim2.new(0, 146, 0, 28)
  32. TextLabel.Font = Enum.Font.SciFi
  33. TextLabel.Text = "Misc"
  34. TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  35. TextLabel.TextSize = 17.000
  36. TextLabel.TextWrapped = true
  37.  
  38. Frame.Parent = main
  39. Frame.BackgroundColor3 = Color3.fromRGB(86, 86, 86)
  40. Frame.BorderSizePixel = 0
  41. Frame.Position = UDim2.new(0, 0, 1, 0)
  42. Frame.Size = UDim2.new(0, 146, 0, 61)
  43.  
  44. INFJUMP.Name = "INFJUMP"
  45. INFJUMP.Parent = main
  46. INFJUMP.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  47. INFJUMP.BorderSizePixel = 0
  48. INFJUMP.Position = UDim2.new(0.794520497, 0, 1.6785717, 0)
  49. INFJUMP.Size = UDim2.new(0, 21, 0, 21)
  50. INFJUMP.Font = Enum.Font.SourceSans
  51. INFJUMP.Text = ""
  52. INFJUMP.TextColor3 = Color3.fromRGB(0, 0, 0)
  53. INFJUMP.TextSize = 14.000
  54. INFJUMP.MouseButton1Down:connect(function()
  55. local Player = game:GetService'Players'.LocalPlayer;
  56. local UIS = game:GetService'UserInputService';
  57.  
  58. _G.JumpHeight = 50;
  59.  
  60. function Action(Object, Function) if Object ~= nil then Function(Object); end end
  61.  
  62. UIS.InputBegan:connect(function(UserInput)
  63. if UserInput.UserInputType == Enum.UserInputType.Keyboard and UserInput.KeyCode == Enum.KeyCode.Space then
  64. Action(Player.Character.Humanoid, function(self)
  65. if self:GetState() == Enum.HumanoidStateType.Jumping or self:GetState() == Enum.HumanoidStateType.Freefall then
  66. Action(self.Parent.HumanoidRootPart, function(self)
  67. self.Velocity = Vector3.new(0, _G.JumpHeight, 0);
  68. end)
  69. end
  70. end)
  71. end
  72. end)
  73. end)
  74.  
  75. TextLabel_2.Parent = main
  76. TextLabel_2.BackgroundColor3 = Color3.fromRGB(38, 38, 38)
  77. TextLabel_2.BorderSizePixel = 0
  78. TextLabel_2.Position = UDim2.new(0.0547945201, 0, 1.57142854, 0)
  79. TextLabel_2.Size = UDim2.new(0, 94, 0, 28)
  80. TextLabel_2.Font = Enum.Font.SciFi
  81. TextLabel_2.Text = "Inf jump"
  82. TextLabel_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  83. TextLabel_2.TextSize = 17.000
  84. TextLabel_2.TextWrapped = true
  85.  
  86. -- Scripts:
  87.  
  88. local function TKDWQ_fake_script() -- INFJUMP.LocalScript
  89. local script = Instance.new('LocalScript', INFJUMP)
  90.  
  91. function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  92.  
  93. counter = 0
  94.  
  95. while wait(0.1)do
  96. script.Parent.BackgroundColor3 = Color3.fromHSV(zigzag(counter),1,1)
  97.  
  98. counter = counter + 0.01
  99. end
  100. end
  101. coroutine.wrap(TKDWQ_fake_script)()
Add Comment
Please, Sign In to add comment