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

AntiExploit not kicking??? (extra text cuz site says it doesnt look like a question)

Asked by
Donut792 216 Moderation Voter
6 years ago

so ive tested my game with executors like skisploit simple none paid ones and when i set any value over the limit that i set in game it is supposed to kick the player but it doesnt

01game.Players.PlayerAdded:Connect(function(plr)
02local moral = plr.Nut.Moral.Value
03local coins = plr.Nut.Coins.Value
04wait(2)
05if moral >= 1001 then
06    plr.Nut.Moral.Value = 1000
07    if coins >= 10000001 then
08        plr.Nut.Coins.Value = 10000000
09    end
10    if plr.Experience.Will.Value >= 1000001 then
11        plr.Experience.Will.Value = 1000000
12    end
13    if plr.Experience.Skill.Value >= 1000001 then
14        plr.Experience.Skill.Value = 1000000
15    end
View all 42 lines...

i tried a while true do loop but that just made it where the player couldnt spawn in

0
Did my answer work? maumaumaumaumaumau 98 — 6y

2 answers

Log in to vote
0
Answered by 6 years ago
Edited 6 years ago

its because the script only runs once when the PlayerAdded event fires, so the if statments will run once, so if you changed a value after the PlayerAdded event fires, it wont do anything since its not running. if you want to fix this, i suggest using Changed events, as it fires if one of the objects properties changes such as your values.

0
While correct, this missed the scope entirely. green271 635 — 6y
0
alright thank you Donut792 216 — 6y
Ad
Log in to vote
0
Answered by 6 years ago
Edited 6 years ago

I would be trying this,

This will be a server sided script.

01game.Players.PlayerAdded:Connect(function(plr)
02local moral = plr.Nut.Moral
03local coins = plr.Nut.Coins
04wait(2)
05moral.Changed:Connect(function()
06if plr.Nut.Moral.Value > 1000 then
07    plr.Nut.Moral.Value = 1000
08end
09end)
10    coins.Changed:Connect(function()
11if coins.Value > 10000000 then
12        plr.Nut.Coins.Value = 10000000
13end
14    end)
15--  6 zeros, skillz , strength , xp
View all 59 lines...

Put a local script in the StarterGui and put this code

01plr = game.Players.LocalPlayer
02repeat wait() until plr.Character
03local moral = plr.Nut.Moral
04local coins = plr.Nut.Coins
05wait(2)
06moral.Changed:Connect(function()
07if plr.Nut.Moral.Value > 1000 then
08    plr.Nut.Moral.Value = 1000
09end
10end)
11    coins.Changed:Connect(function()
12if coins.Value > 10000000 then
13        plr.Nut.Coins.Value = 10000000
14end
15    end)
View all 59 lines...

hope this helps

0
why would you need to put the exact same thing in different types of scripts? User#23365 30 — 6y
0
because they can use a local script instead of server sided script maumaumaumaumaumau 98 — 6y
0
And Humanoid.WalkSpeed is replicated maumaumaumaumaumau 98 — 6y
0
The client should never take part in anti-exploit scripts. The script is also extremely messy and poorly planned out. User#19524 175 — 6y
View all comments (2 more)
0
You wouldn't rely on a single heuristic, but multiple. And not all speed exploits change the WalkSpeed, some change the frames per second and they *seem* faster. User#19524 175 — 6y
0
i did have this localscripted before but it didnt work at all and an exploiter could just delete it and the server wouldnt even notice Donut792 216 — 6y

Answer this question