i added hackers console, if there is a admin in the server (you can set admins in the admins list inside the settings) he can do the command: ā/hackā and it will open the hack console, he can see if player is cheating in the server, and every cheat, to close the gui you need to do that command again.
Letās get some feedback going on here, starting with the source code.
This pcall is just not doing anything, but you can call me ton-
Why are you using a wait? Plus, wait and spawn are deprecated. Consider using their task scheduler successors. Additionally, youāre mixing wait and task.wait in your code, so this leads me to believe that half the source of this was written by ChatGPT.
The entire movement detector is just checking if X is higher than Y then either move them back or kick them. Thatās how simple it is. What can I say. Really, the entire code is just
while character exists do
task.wait(0.15)
if charTouchingGround then blah blahh end
if not charTouchingGround then also blahh blahh end
if speed higher than max speed then if mode = back then move back else kick end
if player been on air for longer than blahh blahh then if mode = back then move else kick end
end
Except, checking that in a while loop isnāt the best idea really. We can just bind it to RenderStepped.
Works? Yeah it works. However this can just be bypassed rather easily. Hint:
Oh, another hint:
Well, this isnāt the best anti-cheat there is. Again by this guys reputation I would not recommend this to anyone. If you are a totally new beginner developer and want some easy-to-understand-and-not-overly-complicated-anti-cheat you can try this. This resource, I mean, works. And itās useful. Kinda, to like, 0.01% of DevForum members. But okay, good job. Good for you.
Just remove āstrongā from the title. It is free but not strong. Just a simple anti-cheat anyone in this thread can make.
most of them were made years ago on devforum, and anti flight = disable collision toolbox script⦠More useful would be anti swim, anti vehicle fly, and other scripts for example from known exploit admin commands ānamelessā.
Even if it does work, are you going to trust somebody who probably used ChatGPT and has a tendency to take down assets when people give constructive criticism, just to publish it under a new name 2 days later?
You need to actually fix your module by using the negative feedback from humans. The one robot that gives you good feedback to make you feel better, will not get you anywhere.
B: No, youāre using deprecated globals [ā¦], so you should [ā¦]
And asking an AI:
A: Is my script good?
C: Yes! Itās very good.
The human is aware of what youāre using and can imagine how it would run if it does. This said, the human can use their specific knowledge to answer you and give you feedback.
A text-generating AI however is not aware of your code. It doesnāt think, it just generates over what it already did.
So letās say you have something on your code that is clearly wrong but the AI does not see that part. It has a chance of saying āyesā or ānoā. If it said āyesā, the entire answer is going to be positive no matter what. It generates, it doesnāt think.