of     1   

UnforeseenVice
#141142813Tuesday, July 22, 2014 6:15 AM GMT

I have been trying to do something that randomly changes body color, and name color. Which is really easy to someone who knows how to script but, i do not know how to script. So far i have this: game.Workspace.iLiekPiercings.Shirt:remove() game.Workspace.iLiekPiercings.Pants:remove() game.Workspace.iLiekPiercings.Head.face:remove() while true do game.Workspace.iLiekPiercings.Head.BrickColor = BrickColor.random() wait(0.1) end But whenever i add something like: game.Workspace.iLiekPiercings.Shirt:remove() game.Workspace.iLiekPiercings.Pants:remove() game.Workspace.iLiekPiercings.Head.face:remove() while true do game.Workspace.iLiekPiercings.Head.BrickColor = BrickColor.random() wait(0.1) end while true do game.Workspace.iLiekPiercings.Torso.BrickColor = BrickColor.random() wait(0.1) end or game.Workspace.iLiekPiercings.Shirt:remove() game.Workspace.iLiekPiercings.Pants:remove() game.Workspace.iLiekPiercings.Head.face:remove() while true do game.Workspace.iLiekPiercings.Head.BrickColor = BrickColor.random() wait(0.1) while true do game.Workspace.iLiekPiercings.Torso.BrickColor = BrickColor.random() wait(0.1) end Then the script just doesnt work at all, and if i cant even get it to randomize the color of two parts, how am i supposed to randiomize the color of the whole body. Let alone the name color. Anyway, if you can help, that would be awesome.
128GB
#141142998Tuesday, July 22, 2014 6:18 AM GMT

You can not change a players name You can not change a players name color, unless you count changing their team color
UnforeseenVice
#141155805Tuesday, July 22, 2014 11:24 AM GMT

Yes i know, thats what i mean
128GB
#141197791Tuesday, July 22, 2014 9:01 PM GMT

while wait(0.03) do Game.Players.LocalPlayer.TeamColor = BrickColor.Random() end
UnforeseenVice
#141267737Wednesday, July 23, 2014 12:43 PM GMT

That script didnt work for me :/ As for the player changing colors ive got a bit further This is what i have: wait (3) local Player = game.Workspace.Player1 Player.Shirt:remove() Player.Pants:remove() Player.Head.face:remove() while true do Player.Head.BrickColor = BrickColor.random() wait (0.1) Player.Torso.BrickColor = BrickColor.random() wait (0.1) end But whenever i try to change the color of the Arms/Legs i automatically get and error and it breaks the script :/ Any help here?
tyzone
#141267917Wednesday, July 23, 2014 12:48 PM GMT

You should try putting their names between brackets and quotation marks. Player["Right Leg"].BrickColor = BrickColor.random() You shouldn't put a dot right after "Player" in this case.
UnforeseenVice
#141268099Wednesday, July 23, 2014 12:52 PM GMT

Thanks that finished the part with the body flashing colors. Do you know of anyway i could also remove the hats im wearing in the same script?
tyzone
#141268990Wednesday, July 23, 2014 1:10 PM GMT

c = Player:GetChildren() --this creates a table that contains the player's children for i = 1,#c do --this loop will run for as many times as there are children if c[i].ClassName == "Hat" then --If the child n°i is a hat, then c[i]:Destroy() --DESTROY US ALL end end
UnforeseenVice
#141287825Wednesday, July 23, 2014 5:24 PM GMT

That didnt work for me :P But thanks
UnforeseenVice
#141485549Friday, July 25, 2014 8:39 AM GMT

Nvm got it to work :P

    of     1