Categories > Exploiting > Complaints >

Infinite Jump

Posts: 1

Threads: 1

Joined: Apr, 2022

Reputation: 0

Posted

So, when I tried to Infinite Jump, it wouldn't let me move. I could only use the teleport tool to move, Any ideas to fix this?

  • 0

MainDab

Main_EX

Posts: 467

Threads: 39

Joined: Sep, 2020

Reputation: 11

Replied

Infinite jump script you can use 

 

local Player = game:GetService'Players'.LocalPlayer; 
 ​local UIS = game:GetService'UserInputService'; 
  
 ​_G.JumpHeight = 50; 
  
 ​function Action(Object, Function) if Object ~= nil then Function(Object); end end 
  
 ​UIS.InputBegan:connect(function(UserInput) 
 ​    if UserInput.UserInputType == Enum.UserInputType.Keyboard and UserInput.KeyCode == Enum.KeyCode.Space then 
 ​        Action(Player.Character.Humanoid, function(self) 
 ​            if self:GetState() == Enum.HumanoidStateType.Jumping or self:GetState() == Enum.HumanoidStateType.Freefall then 
 ​                Action(self.Parent.HumanoidRootPart, function(self) 
 ​                    self.Velocity = Vector3.new(0, _G.JumpHeight, 0); 
 ​                end) 
 ​            end 
 ​        end) 
 ​    end 
 ​end)
  • 0

Users viewing this thread:

( Members: 0, Guests: 1, Total: 1 )