B0ZY
|
  |
| Joined: 05 Nov 2011 |
| Total Posts: 713 |
|
|
| 25 Nov 2012 10:52 PM |
I wish you could reset to change your skin color, just like clothes. Also, for some reason (plz explain if you know why), my head changes yellow in games :/
I do not enjoy this, as it is painful. Change it plz... ;)
Support? |
|
|
| Report Abuse |
|
|
|
| 26 Nov 2012 12:42 AM |
| Support, but you have no ideas to fix it and it said that in the title. |
|
|
| Report Abuse |
|
|
| |
|
B0ZY
|
  |
| Joined: 05 Nov 2011 |
| Total Posts: 713 |
|
|
| 26 Nov 2012 03:28 PM |
| @Surfking12 the reason why is bcuz I don't know what's truly wrong in the first place, I need someone to explain, even though I'm sure it's only something wrong with the script. |
|
|
| Report Abuse |
|
|
Oroun
|
  |
| Joined: 24 Aug 2009 |
| Total Posts: 4339 |
|
| |
|
|
| 26 Nov 2012 03:32 PM |
| On team games that always happens. |
|
|
| Report Abuse |
|
|
KimYuDori
|
  |
| Joined: 30 Dec 2011 |
| Total Posts: 1189 |
|
|
| 26 Nov 2012 03:33 PM |
Most of the yellow heads are caused by the spawn.The spawn,besides of just painting the torso of the character,or just changes the color of the chats,it paints all the body of the character.It's more like a detail that needs to be fixed by the creator of the game.But considering that many people,including me,doesn't know how to fix this on scripting values.....
Support |
|
|
| Report Abuse |
|
|
|
| 26 Nov 2012 03:42 PM |
Im not a scripter, but i think this is the part of programming you need to remove.
local character = script.Parent.Parent local player = game.Players:GetPlayerFromCharacter(character) script.Parent.TextureId = "http://www.roblox.com/asset/?id=25757870" mouse.Icon ="rbxasset://textures\\DragCursor.png" mouse.Button1Down:connect(function() onButton1Down(mouse) end)
selectionBox = Instance.new("SelectionBox") selectionBox.Color = BrickColor.new("Really blue") selectionBox.Adornee = nil selectionBox.Parent = player.PlayerGui arcHandles = Instance.new("ArcHandles") arcHandles.Color = BrickColor.new("New Yeller") arcHandles.Adornee = nil arcHandles.Axes = Axes.new(Enum.Axis.X, Enum.Axis.Y, Enum.Axis.Z) arcHandles.MouseDrag:connect(onArcHandlesDrag) arcHandles.MouseButton1Down:connect(onArcHandlesDown) arcHandles.Parent = player.PlayerGui
moveHandles = Instance.new("Handles") moveHandles.Style = Enum.HandlesStyle.Movement moveHandles.Color = BrickColor.new("Really red") moveHandles.Adornee = nil moveHandles.MouseDrag:connect(onMoveHandlesDrag) moveHandles.MouseButton1Down:connect(onMoveHandlesDown) moveHandles.Parent = player.PlayerGui
end |
|
|
| Report Abuse |
|
|
B0ZY
|
  |
| Joined: 05 Nov 2011 |
| Total Posts: 713 |
|
|
| 26 Nov 2012 03:56 PM |
| It always happens in team, heavy-scripted games. I just want ROBLOX to find a solution... I hate being a yellow-headed, black legged freak! |
|
|
| Report Abuse |
|
|
|
| 26 Nov 2012 04:15 PM |
Hmm... best not to remove this part:
moveHandles = Instance.new("Handles") moveHandles.Style = Enum.HandlesStyle.Movement moveHandles.Color = BrickColor.new("Really red") moveHandles.Adornee = nil moveHandles.MouseDrag:connect(onMoveHandlesDrag) moveHandles.MouseButton1Down:connect(onMoveHandlesDown) moveHandles.Parent = player.PlayerGui
Looks important. |
|
|
| Report Abuse |
|
|
B0ZY
|
  |
| Joined: 05 Nov 2011 |
| Total Posts: 713 |
|
| |
|
| |
|