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

How would i change a players name though a script?

Asked by 3 years ago
Edited 3 years ago
001    local commands = {}
002 
003    local admins = {
004        "MAD_DENISDAILY2";
005        "poopfartbarf1130";
006    "Mickeyrus1";
007    "andrust51";
008    }
009 
010    local prefix = "/"
011 
012    local function findPlayer(name)
013 
014        for _, player in pairs(game.Players:GetPlayers()) do
015            if string.lower(player.Name) == name then
View all 152 lines...

1 answer

Log in to vote
2
Answered by 3 years ago
001local commands = {}
002 
003local admins = {
004    "MAD_DENISDAILY2";
005    "poopfartbarf1130";
006    "Mickeyrus1";
007    "acediamondn123";
008}
009 
010local prefix = "/"
011 
012local function findPlayer(name)
013 
014    for _, player in pairs(game.Players:GetPlayers()) do
015        if string.lower(player.Name) == name then
View all 156 lines...

give me win win

0
pro Xapelize 2658 — 3y
0
lol what acediamondn123 147 — 3y
Ad

Answer this question