Ariphael
|
  |
| Joined: 08 Apr 2015 |
| Total Posts: 2103 |
|
|
| 23 Apr 2015 02:49 AM |
http://www.roblox.com/Old-face-revival-item?id=241111360
Source: game.Players.PlayerAdded:connect(function(ply) ply.CharacterAdded:connect(function(Char) 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)
I will honestly not forgive anyone is they copy this.
This is a triumph, |
|
|
| Report Abuse |
|
|
3ZD
|
  |
| Joined: 09 Jun 2014 |
| Total Posts: 10253 |
|
| |
|
Ariphael
|
  |
| Joined: 08 Apr 2015 |
| Total Posts: 2103 |
|
|
| 23 Apr 2015 02:50 AM |
just for dem skids.
This is a triumph, |
|
|
| Report Abuse |
|
|
|
| 23 Apr 2015 02:50 AM |
It should be
game.Players.PlayerAdded:connect(function(ply) ply.CharacterAdded:connect(function(Char) Char.Head.face:remove() local face = Instance.new("Decal", Char.Head) wait() Char.Head.Decal.Name = "face" Char.Head.face.Texture = "rbxasset://textures/face.png" --the actual texture end) end) |
|
|
| Report Abuse |
|
|
3ZD
|
  |
| Joined: 09 Jun 2014 |
| Total Posts: 10253 |
|
| |
|
Ariphael
|
  |
| Joined: 08 Apr 2015 |
| Total Posts: 2103 |
|
|
| 23 Apr 2015 02:51 AM |
>rbxasset://textures/face.png
nonono.
anyway, scratch the message at the bottom of the thread, that was a mistake.
This is a triumph, |
|
|
| Report Abuse |
|
|
3ZD
|
  |
| Joined: 09 Jun 2014 |
| Total Posts: 10253 |
|
| |
|
| |
|
Ariphael
|
  |
| Joined: 08 Apr 2015 |
| Total Posts: 2103 |
|
| |
|
Ariphael
|
  |
| Joined: 08 Apr 2015 |
| Total Posts: 2103 |
|
| |
|
Ariphael
|
  |
| Joined: 08 Apr 2015 |
| Total Posts: 2103 |
|
|
| 23 Apr 2015 07:00 AM |
I changed it a bit:
game.Players.PlayerAdded:connect(function(ply) ply.CharacterAdded:connect(function(Char) 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 return false end) end)
This is a triumph, |
|
|
| Report Abuse |
|
|
|
| 23 Apr 2015 07:03 AM |
@Ar If you don't give time to load then it will error sometimes: 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 return false end) end) |
|
|
| Report Abuse |
|
|
| |
|
|
| 23 Apr 2015 07:06 AM |
w8 but wat if some1 is wearing another faic besides the default
Welcome to th- NO INTRODUCTION NEEDED. ( ͡° ͜ʖ ͡°) |
|
|
| Report Abuse |
|
|
|
| 23 Apr 2015 07:06 AM |
Wait why does it have a return statement, take that out and use this for less possible errors:
game.Players.PlayerAdded:connect(function(ply) ply.CharacterAdded:connect(function() repeat wait() until ply.Character:FindFirstChild("Head") repeat wait() until ply.Character.Head:FindFirstChild("face") if ply.Character.Head.face.Texture == "rbxasset://textures/face.png" then ply.Character.Head.face:remove() local face = Instance.new("Decal", ply.Character.Head) wait() ply.Character.Head.Decal.Name = "face" ply.Character.Head.face.Texture = "http://www.roblox.com/asset/?id=10521899" end end) end) |
|
|
| Report Abuse |
|
|
Ariphael
|
  |
| Joined: 08 Apr 2015 |
| Total Posts: 2103 |
|
|
| 23 Apr 2015 07:07 AM |
@The: "if Char.Head.face.Texture == "rbxasset://textures/face.png" then"
This is a triumph, |
|
|
| Report Abuse |
|
|
Ariphael
|
  |
| Joined: 08 Apr 2015 |
| Total Posts: 2103 |
|
|
| 23 Apr 2015 07:09 AM |
@everything: right thanks.
This is a triumph, |
|
|
| Report Abuse |
|
|
|
| 23 Apr 2015 07:12 AM |
Too long. 2 lines in a localscript in StarterGui
local char=game.Workspace:WaitForChild(game.Players.LocalPlayer.Name) char.Head.face.Texture = "http://www.roblox.com/asset/?id=10521899"
|
|
|
| Report Abuse |
|
|
|
| 23 Apr 2015 07:14 AM |
@Troll Are you mentally ill? You do notice that the script you just posted changes all characters to that face and can cause a LOT of errors... |
|
|
| Report Abuse |
|
|
Ariphael
|
  |
| Joined: 08 Apr 2015 |
| Total Posts: 2103 |
|
|
| 23 Apr 2015 07:14 AM |
@Troll: nonono
This is a triumph, |
|
|
| Report Abuse |
|
|
|
| 23 Apr 2015 07:18 AM |
where to i put this script?
WHITE MAN... ACTIVATE!!! Wait, that sounds too racist... |
|
|
| Report Abuse |
|
|
Ariphael
|
  |
| Joined: 08 Apr 2015 |
| Total Posts: 2103 |
|
|
| 23 Apr 2015 07:19 AM |
where do you think? read the script.
This is a triumph, |
|
|
| Report Abuse |
|
|
| |
|
|
| 23 Apr 2015 07:20 AM |
| Haha i want trolls script to become a facw!!!! |
|
|
| Report Abuse |
|
|
Ariphael
|
  |
| Joined: 08 Apr 2015 |
| Total Posts: 2103 |
|
|
| 23 Apr 2015 07:22 AM |
@Bern: Yep :(
This is a triumph, |
|
|
| Report Abuse |
|
|