Is exploitable something like Player name?

Is it possible that a exploiter change his name client-side?
example.
exploiter: game.Players.LocalPlayer.Name = ‘hi’

if game.Players.LocalPlayer.Name == 'hi' then
print('hi')
end

it might be a dumb question, but I never exploited so I don’t know
personnally
I wouldn’t ever do this type of checks (clientside) by the way

You can’t make your name something different. Exploits usually operate on clientside (unless you’ve been backdoored). This means that if the exploiter changed his name on his side, it won’t replicate to the server. Other players will just see his regular name.

1 Like

Isn’t this property locked?
When doing it on studio it says locked.

What do you mean by the property being locked?

image

Yes, it’s locked because if you changed your name, you would load a different account’s character and possibly feed off of his Roblox Premium Account

Yes, an exploiter can change their name client side. Anything on the client can be changed, no matter if it is restricted in studio.
There was an exploit that allowed for users to change their name and it replicated however that has been patched.

2 Likes

Yup, exploiters operate client not server.

Exploiters can bypass anything that is on their machine. :slight_smile:

2 Likes

I already knew this, but I mean, something like what I said would work?
I though it was 100%% locked
welp, thanks!!

Exploits run in a level 7 context, basically meaning they can do whatever they want. As long as it is on the client, they can do it.