What is an Exploiter able to do and is my script Exploitable?
Asked by
5 years ago Edited 5 years ago
What I've Been Told
I've been told that RemoteEvents get their UserId through locally or through the Client. I am also told that Exploiters can access another clients PlayerGui Folder. Apparently, exploiters can use something called debug.profilebegin
to access another clients PlayerGui Folder.
My Scripts
My scripts are designed to make sure anyone who isn't under the Admin ID list can't get access to these controls or even if they get access to the controls themselves, every time a button is pressed... it checks to see if the users UserId is equal to one of the adminIDs.
Improvements/Wants
I have nothing to go off of to know what I can improve on but I want to make sure that my code is unable to be exploited against me.
My Question
Is my script secure and not exploitable? What else do I need to know?
Command In Action
03 | Event = game.ReplicatedStorage.ColorEvents.ExampleEvent |
04 | adminCheck = require(game.ServerScriptService [ "Scripts|Admins" ] [ "ModuleScript|AdminCheck" ] ) |
06 | Event.OnServerEvent:Connect( function (plr,function 1 ,function 2 ) |
07 | if adminCheck.Activate(plr) then |
Admin Module
03 | local player = game:GetService( "Players" ) |
05 | adminIDs = { 678299 , 4947564 } |
10 | function adminCheck.Activate(plr) |
11 | for i,Admin in ipairs (adminIDs) do |
12 | if plr.UserId = = Admin then |
13 | print ( "Admin Started" ) |
Thank you for any feedback you give me.