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

Is it possible to make a uniform gui?

Asked by
Rapaco 0
10 years ago

In what i mean is you create a gui that in which your in the blue team it gives you a certain type of uniform, and when your in the red team it gives you a a different type of uniform. How do you do this?

0
Anything is possible, don't put 'Is it possible?' Nickoakz 231 — 10y

3 answers

Log in to vote
0
Answered by 10 years ago

Yes, this is possible.

0
How do you do this? Rapaco 0 — 10y
0
Well for starters you could make a morph and put a transparent morph button over the spawn. If you want to script it then I can't help there as of right now. Sherknock -2 — 10y
Ad
Log in to vote
0
Answered by
Krlos21 45
10 years ago

I think that what you mean should be in plugins on Roblox Studio you can use find plugins( grey button in plugins part) and search for ArmorMaker or Character Animations (usually the first ones to come up) take them for free and close your Roblox Studio and open again and in the plugins side should appear a blue armor to make decals and blocks that players will have or Character Animations (next to the blue icon) and choose the colors and all players will enter with that specific Shirt or Uniform or body color and just simply connect that to the Player's Teams by setting the armor as the name of the color team or team name if changed to an specific name or use a more efficient script that will connect the Armor or the Character Animations to the change of Teams that would occur in your game. Hope it helped :D

0
Alright then im going to try it out Rapaco 0 — 10y
0
what do you mean b in the plugins side should appear a blue armor to make decals? Rapaco 0 — 10y
0
I mean that when you open Roblox Studio on the top there's a button that says plugins and when you click on it you can look for many and choose the ArmorMaker and when you close and open back again Studio and go to plugins it should appear another box next to it that's a blue armor click on it and you can add bricks or decals to the player when it spawns in your game Krlos21 45 — 10y
0
Doesn't work Rapaco 0 — 10y
Log in to vote
0
Answered by 10 years ago
wait(2)
if script.Parent.Parent.TeamColor == BrickColor.new("COLOR HERE") then
if workspace:FindFirstChild(script.Parent.Parent.Name):FindFirstChild("Shirt") == nil then
if workspace:FindFirstChild(script.Parent.Parent.Name):FindFirstChild("Pants") ~= nil then
workspace:FindFirstChild(script.Parent.Parent.Name).Pants:remove()
a = Instance.new("Shirt")
a.ShirtTemplate = ("http://www.roblox.com/asset/?id=ID HERE")
a.Parent = workspace:FindFirstChild(script.Parent.Parent.Name)
b = Instance.new("Pants")
b.PantsTemplate = ("http://www.roblox.com/asset/?id=ID HERE")
b.Parent = workspace:FindFirstChild(script.Parent.Parent.Name)
else
a = Instance.new("Shirt")
a.ShirtTemplate = ("http://www.roblox.com/asset/?id=ID HERE")
a.Parent = workspace:FindFirstChild(script.Parent.Parent.Name)
b = Instance.new("Pants")
b.PantsTemplate = ("http://www.roblox.com/asset/?id=ID HERE")
b.Parent = workspace:FindFirstChild(script.Parent.Parent.Name)
end
else
if workspace:FindFirstChild(script.Parent.Parent.Name):FindFirstChild("Pants") ~= nil then
workspace:FindFirstChild(script.Parent.Parent.Name).Shirt:remove()
workspace:FindFirstChild(script.Parent.Parent.Name).Pants:remove()
a = Instance.new("Shirt")
a.ShirtTemplate = ("http://www.roblox.com/asset/?id=ID HERE")
a.Parent = workspace:FindFirstChild(script.Parent.Parent.Name)
b = Instance.new("Pants")
b.PantsTemplate = ("http://www.roblox.com/asset/?id=ID HERE")
b.Parent = workspace:FindFirstChild(script.Parent.Parent.Name)
else
workspace:FindFirstChild(script.Parent.Parent.Name).Shirt:remove()
a = Instance.new("Shirt")
a.ShirtTemplate = ("http://www.roblox.com/asset/?id=ID HERE")
a.Parent = workspace:FindFirstChild(script.Parent.Parent.Name)
b = Instance.new("Pants")
b.PantsTemplate = ("http://www.roblox.com/asset/?id=ID HERE")
b.Parent = workspace:FindFirstChild(script.Parent.Parent.Name)
end
end
end

After making teams and choosing a color for them, insert this script in StarterGui ..... Then change "COLOR HERE" to the color of the team and change "ID HERE" to the ID of the clothes. NOTE: If you have 2 teams, then you must add this script 2 times in SterterGui. Please accept the answer.

0
Doesnt work Rapaco 0 — 10y

Answer this question