Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Do I can change LocalPlayer to my player in a global script?

Asked by 6 years ago

I'm trying to do a script builder, instead of game.Players.LocalPlayer to game.Players.Xx_XSanderPlayXx.

this is what i tried

01function Run(f, plr)
02    local unfunction,message = loadstring(f)
03    if not unfunction then
04        return nil, message
05    end
06 
07    local oldEnvironment = getfenv(unfunction)
08 
09    local NewEnvironment = setmetatable({}, {
10        __index = function(_, k)
11            if k:lower() == "localplayer" then
12                print(k)
13                oldEnvironment[k] = plr.Name
14                return oldEnvironment[k]
15            else
View all 23 lines...

it only works with game.Players[LocalPlayer].

Can someone help me please?

0
local plr = game.Players:WaitForChild("Xx_XSanderPlayXx") Waits until you load greatneil80 2647 — 6y

1 answer

Log in to vote
0
Answered by 6 years ago
1code = string.gsub(code, "LocalPlayer", plr.Name, 10000)
2loadstring(code)()

I did this!, thx!

Ad

Answer this question