Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Is there a way to stop the exploit Infinite Jump?

Asked by 7 years ago
Edited 7 years ago

Hey, I was wondering if there is a way to stop the free exploit "Infinite Jump" from working on my game?

All help is appreciated.

Edit: I can't use FE, it breaks lots of things. I am making an anti-exploit, and infinite jump seems hard to stop.

0
Surely FE stops it? Perci1 4988 — 7y
0
I need FE off for some other reasons. Wilbob30 69 — 7y
0
add an anti exploiter that has already been made by someone FedrixYT -21 — 7y
0
Well, have you figured out how this exploit is derived? Because the only way to prevent something from happening is if you knew how it happened in the first place. (I can't give you a direct answer, as I'm unfamiliar with this exploit.) Redbullusa 1580 — 7y
View all comments (2 more)
0
I mean by "Infinite Jump" you mean always being able to jump at whatever JumpPower they choose, I can assume also you want the players to jump the same, so just do a loop to continuously make sure it is at the desired JumpPower or do an event to see if something is changed in the humanoid. yougottols1 420 — 7y
0
It has nothing to do with the JumpPower - it abuses the sit and jump function, which makes you jump into the sky infinitely Wilbob30 69 — 7y

1 answer

Log in to vote
0
Answered by 7 years ago

This will prevent players from exploiting their JumpPower and WalkSpeed. Everytime the walkspeed goes above 16, it'll change back to 16 and whenever the JumpPower is greater than 50, it'll go back to 50.

while wait() do
    for _,v in pairs(game.Players:GetPlayers()) do
        if v.Character then
            if v.Character.Humanoid.WalkSpeed > 16 then
                v.Character.Humanoid.WalkSpeed = 16
            elseif v.Character.Humanoid.JumpPower > 50 then
                v.Character.Humanoid.JumpPower = 50
            end
        end
    end
end
0
@Wilbob30 Precisionly 103 — 7y
0
Please explain the reasoning behind your answer. Thanx. c; And for an exploit, I doubt it has anything to do with the JumpPower, which is why there was a function to check a player's FPS. TheeDeathCaster 2368 — 7y
0
This didn't work, sorry. Wilbob30 69 — 7y
Ad

Answer this question