aimperkzJoin Date: 2015-04-02 Post Count: 7292 |
qq |
|
|
aimperkzJoin Date: 2015-04-02 Post Count: 7292 |
what functions would i use for this:
Each team / certain team will be spawned in with certain clothes. if they die or try to change clothes, they will have those clothes still... aka perm. clothes while in game
Could you possibly set it up for me ?- |
|
aimperkzJoin Date: 2015-04-02 Post Count: 7292 |
surs pls |
|
LamettaJoin Date: 2012-07-07 Post Count: 7975 |
aaaaaaaaaaaa |
|
aimperkzJoin Date: 2015-04-02 Post Count: 7292 |
e.e |
|
76kmJoin Date: 2015-08-14 Post Count: 5455 |
i am online k |
|
aimperkzJoin Date: 2015-04-02 Post Count: 7292 |
damn it 76 u followed me
do you usually c&g |
|
LamettaJoin Date: 2012-07-07 Post Count: 7975 |
2tired2think but like
onPlayerEntered(plr)
plr.Character.Shir
asrwrtgvw
sry 2tired |
|
aimperkzJoin Date: 2015-04-02 Post Count: 7292 |
onPlayerEntered(plr)
plr.Character.Shirt
ShirtId = "000"
is it like that
CRI :( |
|
76kmJoin Date: 2015-08-14 Post Count: 5455 |
sigh
getGroupRank()
setGroupRank()
k |
|
aimperkzJoin Date: 2015-04-02 Post Count: 7292 |
what's the ranks for?
I said >teams<
what
read post
thx
|
|
|
i made my jetpack place uncopylock |
|
aimperkzJoin Date: 2015-04-02 Post Count: 7292 |
you guys are stalkers LMAO
|
|
|
76kmJoin Date: 2015-08-14 Post Count: 5455 |
while true do
wait()
for i, v in pairs (game.Players:GetChildren()) do
if v.Character then
v.Character.Pants.PantId = "rbxasset://id here"
v.Character.Shirts.ShirtId = "rbxasset://id here"
end
end
|
|
LamettaJoin Date: 2012-07-07 Post Count: 7975 |
while true do
wait()
for i, v in pairs (game.Players:GetChildren()) do
if v.Character then
v.Character.Pants.PantId = "rbxasset://id here"
v.Character.Shirts.ShirtId = "rbxasset://id here"
end
end
-- this works too but if you want teams
while true do
wait()
for i, v in pairs (game.Players:GetChildren()) do
if v.Character then
if v.TeamColor == "ColorOfTeam" then
v.Character.Pants.PantId = "rbxasset://id here"
v.Character.Shirts.ShirtId = "rbxasset://id here"
elseif v.TeamColor == "ColorOfTeam" then
v.Character.Pants.PantId = "rbxasset://id here"
v.Character.Shirts.ShirtId = "rbxasset://id here"
end
end
end
pretty sure
im tired and i used his thing as a template |
|