of     1   

BluePheonix49
#15986902Thursday, October 29, 2009 12:32 AM GMT

I need a gui that has a button for reseting and a button that will reload all your persons character colors and will un-anchor all there parts. Its a little too complex for me cause I suck at scripting. Can someone make me one.
iguana72
#15987239Thursday, October 29, 2009 12:37 AM GMT

I'll give you part of the scripts you wan't. function click() script.Parent.Parent.Parent.Parent.Character.Humanoid.Health = 0 end script.Parent.MouseButton1Down:connect(click) Put this into a Gui button.
BluePheonix49
#15987512Thursday, October 29, 2009 12:40 AM GMT

I already have a reset gui, those are easy to find, i mostly need the thaw part
Vengroe
#15987548Thursday, October 29, 2009 12:41 AM GMT

Another TextButton: function click() script.Parent.Parent.Parent.Parent.Character.Head.BrickColor = BrickColor.new(Number) script.Parent.Parent.Parent.Parent.Character.Head.Anchored = False script.Parent.Parent.Parent.Parent.Character.Torso.BrickColor = BrickColor.new(Number) script.Parent.Parent.Parent.Parent.Character.Torso.Anchored = False script.Parent.Parent.Parent.Parent.Character.["Left Arm"].BrickColor = BrickColor.new(Number) script.Parent.Parent.Parent.Parent.Character.["Left Arm"].Anchored = False script.Parent.Parent.Parent.Parent.Character.["Right Arm"].BrickColor = BrickColor.new(Number) script.Parent.Parent.Parent.Parent.Character.["Right Arm"].Anchored = False script.Parent.Parent.Parent.Parent.Character.["Left Leg"].BrickColor = BrickColor.new(Number) script.Parent.Parent.Parent.Parent.Character.["Left Leg"].Anchored = False script.Parent.Parent.Parent.Parent.Character.["Right Leg"].BrickColor = BrickColor.new(Number) script.Parent.Parent.Parent.Parent.Character.["Right Leg"].Anchored = False end script.Parent.MouseButton1Down:connect(click)
iguana72
#15987581Thursday, October 29, 2009 12:42 AM GMT

Should have said so.
Vengroe
#15987782Thursday, October 29, 2009 12:45 AM GMT

Better: Local player = script.Parent.Parent.Parent.Parent.Character function click() player.Head.BrickColor = BrickColor.new(Number) player.Head.Anchored = False player.Torso.BrickColor = BrickColor.new(Number) player.Torso.Anchored = False player.["Left Arm"].BrickColor = BrickColor.new(Number) player.["Left Arm"].Anchored = False player.[Right Arm"].BrickColor = BrickColor.new(Number) player.["Right Arm"].Anchored = False player.["Left Leg"].BrickColor = BrickColor.new(Number) player.["Left Leg"].Anchored = False player.["Right Leg"].BrickColor = BrickColor.new(Number) player.["Right Leg"].Anchored = False end script.Parent.MouseButton1Down:connect(click)
BluePheonix49
#15993146Thursday, October 29, 2009 2:36 AM GMT

Thank you.
BluePheonix49
#15993302Thursday, October 29, 2009 2:40 AM GMT

Wait will this reset the players original colors or do I have to put in my own colors?

    of     1