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

My clothes script won't work, Why?

Asked by 11 years ago
01local fighters = game.Workspace.Teams.Fighters
02local defenders = game.Workspace.Teams.Defenders
03plr = game.Workspace.LocalPlayer
04 
05    fighters.Shirt.ShirtTemplate = "http://www.roblox.com/Red-item?id=157673817"
06    fighters.Pants.PantsTemplate = "http://www.roblox.com/Pants-item?id=157684158"
07    if plr.fighters == true then
08        plr.fighters.Shirt.ShirtTemplate:Destroy()
09        plr.fighters.Pants.PantsTemplate:Destroy()
10        wait(3)
11        plr.fighters.Shirt.ShirtTemplate = "http://www.roblox.com/Red-item?id=157673817"
12        plr.fighters.Pants.PantsTemplate = "http://www.roblox.com/Pants-item?id=157684158"
13        defends.Shirt.ShirtTemplate = "http://www.roblox.com/Blue-item?id=157673856"
14        defends.Pants.PantsTemplate = "http://www.roblox.com/Pants1-item?id=157684213"
15        if plr.defenders == true then
View all 22 lines...

It when your on defenders team, you get the uniform, when your on fighters, you get the uniform. Works on solo but not ingame. Why?

0
I think it would be a LOT easier if you use 'rbxassetid://' instead of "http://www.roblox.com/Blue-item?id=".. http://wiki.roblox.com/index.php/Content Nickoakz 231 — 11y

2 answers

Log in to vote
0
Answered by
Resnex 60
11 years ago

It's supposed to be

1game.Teams

not

1game.Workspace.Teams

Because the Teams folder is not a part of Workspace.

0
:o oh, Thanks. Roboy5857 20 — 11y
Ad
Log in to vote
0
Answered by 11 years ago

If you mean the clothes, you did the http:// wrong.

1ID=0000000
2 
3script.Parent.Shirt.ShirtTemplate="http://www.roblox.com/asset/?id="..ID

Answer this question