|
| 23 Apr 2015 07:22 AM |
local char=game.Workspace:WaitForChild(game.Players.LocalPlayer.Name) if (char.Head.face.Texture == "rbxasset://textures/face.png") and char then char.Head.face.Texture= "http://www.roblox.com/asset/?id=10521899"; end
3 lines. Simple tested it works error free unless you decide to delete the face for some reason. |
|
|
| Report Abuse |
|
|
vat21s
|
  |
| Joined: 07 Jun 2010 |
| Total Posts: 2508 |
|
|
| 23 Apr 2015 07:23 AM |
local char=game.Workspace:WaitForChild(game.Players.LocalPlayer.Name) if (char.Head.face.Texture == "rbxasset://textures/face.png") and char then char.Head.face.Texture= "http://www.roblox.com/asset/?id=10521899"; end
Works great thanks. |
|
|
| Report Abuse |
|
|
Ariphael
|
  |
| Joined: 08 Apr 2015 |
| Total Posts: 2103 |
|
|
| 23 Apr 2015 07:26 AM |
@Troll: I don't know how to reply to that . . .
This is a triumph, |
|
|
| Report Abuse |
|
|
Ariphael
|
  |
| Joined: 08 Apr 2015 |
| Total Posts: 2103 |
|
|
| 23 Apr 2015 07:30 AM |
@Troll: I think it's good if you use my way so that it's serverside.
This is a triumph, |
|
|
| Report Abuse |
|
|
|
| 23 Apr 2015 07:46 AM |
@Troll Just because it works in studio doesn't mean it won't have errors, what about people wearing headless head, ever think about that? |
|
|
| Report Abuse |
|
|
Ariphael
|
  |
| Joined: 08 Apr 2015 |
| Total Posts: 2103 |
|
| |
|
Ariphael
|
  |
| Joined: 08 Apr 2015 |
| Total Posts: 2103 |
|
|
| 24 Apr 2015 09:10 PM |
game.Players.PlayerAdded:connect(function(ply) ply.CharacterAdded:connect(function(Char) repeat wait() until Char:FindFirstChild("Head") repeat wait() until Char.Head:FindFirstChild("face") if Char.Head.face.Texture == "rbxasset://textures/face.png" then Char.Head.face:remove() local face = Instance.new("Decal", Char.Head) wait() Char.Head.Decal.Name = "face" Char.Head.face.Texture = "http://www.roblox.com/asset/?id=10521899" end end) end)
This is a triumph, |
|
|
| Report Abuse |
|
|
Ariphael
|
  |
| Joined: 08 Apr 2015 |
| Total Posts: 2103 |
|
| |
|
Ariphael
|
  |
| Joined: 08 Apr 2015 |
| Total Posts: 2103 |
|
| |
|