So I made an anti-hack script that bans players from a game if they have too much walkspeed:
01 | local Players = game:GetService( "Players" ) |
02 | local LocalPlayer = Players.LocalPlayer |
03 | repeat wait() until LocalPlayer.Character |
04 |
05 | while true do |
06 | wait() |
07 | if LocalPlayer.Character.Humanoid.WalkSpeed ~ = 16 then |
08 | LocalPlayer:Kick( "Exploiting" ) |
09 | wait( 10 ) |
10 | end |
11 | end |
But, I forgot that I had a sprint function in-game, so when I tried team-testing, it kicked me and my friend from the server. How can I unban my friend and I from our own game?
If I know correctly, (I am assuming that you are using sprint, or moving fast/ btw jumping is not always 16 walk speed) That what you could do instead of the hacking you could check if the player name is yours or your friends.
01 | local Players = game:GetService( "Players" ) |
02 | local LocalPlayer = Players.LocalPlayer |
03 | repeat wait() until LocalPlayer.Character |
04 |
05 | while true do |
06 | wait() |
07 | if LocalPlayer.Character.Humanoid.WalkSpeed ~ = 16 then |
08 | if LocalPlayer.Name ~ = "Lightning_Game27" then --you can change the name to anyone. |
09 | LocalPlayer:Kick( "Exploiting" ) |
10 | wait( 10 ) |
11 |
12 | end |
13 | end |
14 | end |
If that doesn't work maybe you need to change game settings such as jumping/falling.
I believe that you haven't banned yourself based on the script, you can just remove this Kick Player and Problem Solved?