of     1   

Sweegz
#216080081Sunday, May 07, 2017 12:42 AM GMT

is it possible to get the players from the game and removing me from it
Inductive
#216080261Sunday, May 07, 2017 12:46 AM GMT

local players = game.Players:GetChildren() for i = 1, #players do if players[i].Name == "Sweegz" then player:Kick() --Or Destroy() or whatever. end
Sweegz
#216080303Sunday, May 07, 2017 12:46 AM GMT

no i mean it gets all the other players and removes me from the list
SenseiWarrior
#216080356Sunday, May 07, 2017 12:47 AM GMT

local function getPlayers(...) local ignoreList = {...} local players = {} local function find(name) for i, v in pairs(ignoreList) do if v == name then return true end end end for i, v in pairs(game.Players:GetPlayers()) do if not find(v.Name) then table.insert(players,v) end end return v end getPlayers("Player1","Sweegz") --etc send trades ⭐️ 🌟 ✨ ⚡️ 🔥 💥 ☄️
Sweegz
#216080590Sunday, May 07, 2017 12:50 AM GMT

for _,player in pairs(game.Players:GetPlayers()) do AnimationId = "33796059" local Anim = Instance.new("Animation") Anim.AnimationId = "rbxassetid://"..AnimationId local k = player.Character.Humanoid:LoadAnimation(Anim) -- script will error if Humanoid doesnt exist in character k:Play() --Play the animation k:AdjustSpeed(math.huge) --Set '1' to any value you want to adjust the animation speed. end Sorry i dont get what you are writing as im a bad scripter but how would i remove me from this
JarodOfOrbiter
#216081165Sunday, May 07, 2017 12:59 AM GMT

This is an interesting evening. The only people posting anything don't know how to script and want us to do it for them.
Disillusions
#216081674Sunday, May 07, 2017 1:06 AM GMT

Most evenings are an interesting evening then
Sweegz
#216081864Sunday, May 07, 2017 1:09 AM GMT

well i do know but i still cant get rid of my player from the list and i dont want to make it complicated
128Gigabytes
#216082070Sunday, May 07, 2017 1:12 AM GMT

You'll need to be making your own playerlist then buddy.
Sweegz
#216082233Sunday, May 07, 2017 1:15 AM GMT

stupid language glad i dont know it
128Gigabytes
#216082395Sunday, May 07, 2017 1:17 AM GMT

Its a strange thing to be apposed to any knowledge. It makes sense to decide you don't want to learn it, because it isn't free (It cost time in this case.) but to say you are glad you don't know it implies that if it was an on off switch you would choose to not know it, and that is stupid.
Sweegz
#216082463Sunday, May 07, 2017 1:18 AM GMT

yes i need to add 15 lines to remove a stupid string from an list
Sweegz
#216083900Sunday, May 07, 2017 1:40 AM GMT

500 robux if u fix this doesnt work even if players == "sweegz" cause i dont exist appareantly
Sweegz
#216084161Sunday, May 07, 2017 1:45 AM GMT

nvm fixed it
128Gigabytes
#216084190Sunday, May 07, 2017 1:46 AM GMT

we wish you didnt exist
noobsrock114
#216084728Sunday, May 07, 2017 1:55 AM GMT

Lul
biboyevangelista
#221191084Thursday, July 13, 2017 5:40 AM GMT

for _,player in pairs(game.Players:GetPlayers()) do AnimationId = "33796059" local Anim = Instance.new("Animation") Anim.AnimationId = "rbxassetid://"..AnimationId local k = player.Character.Humanoid:LoadAnimation(Anim) -- script will error if Humanoid doesnt exist in character k:Play() --Play the animation k:AdjustSpeed(99) --Set '1' to any value you want to adjust the animation speed. end
nullfeels
#221192794Thursday, July 13, 2017 6:10 AM GMT

JarodOfOrbiter: "This is an interesting evening. The only people posting anything don't know how to script and want us to do it for them." Disillusions: "Most evenings are an interesting evening then" I lol'd so hard at this. xD
TheeDeathCaster
#221197866Thursday, July 13, 2017 7:43 AM GMT

It's super simple: local players = game:GetService('Players'):GetPlayers() for i = 1, #players do if players[i].Name == 'TheeDeathCaster' then table.remove(players, i) end end for i = 1, #players do print(players[i].Name) -- Should not have you in it. end Super simple. :P
KiwiTronik
#221199525Thursday, July 13, 2017 8:23 AM GMT

players = {} ignore = "Sweegz" for _,v in pairs (game.Players:GetPlayers()) do if v.Name ~= ignore then table.insert(players, v) end end whyy everybody gotta complicate it

    of     1