Do I can change LocalPlayer to my player in a global script?
I'm trying to do a script builder, instead of game.Players.LocalPlayer to game.Players.Xx_XSanderPlayXx.
this is what i tried
02 | local unfunction,message = loadstring (f) |
03 | if not unfunction then |
07 | local oldEnvironment = getfenv (unfunction) |
09 | local NewEnvironment = setmetatable ( { } , { |
10 | __index = function (_, k) |
11 | if k:lower() = = "localplayer" then |
13 | oldEnvironment [ k ] = plr.Name |
14 | return oldEnvironment [ k ] |
16 | return oldEnvironment [ k ] |
21 | setfenv (unfunction, NewEnvironment) |
it only works with game.Players[LocalPlayer].
Can someone help me please?