Blizze
|
  |
| Joined: 25 May 2013 |
| Total Posts: 1439 |
|
|
| 22 May 2016 04:43 PM |
I'm using a local script in the StarterPlayer folder. It says no errors in the output whatsoever, so idk what I'm doing wrong.
local p = game.Players.LocalPlayer local char = p:WaitForChild("Character")
local head = char:findFirstChild("Head") if head then head.face.Texture = "http://www.roblox.com/asset/?id=402348549" end
|
|
|
| Report Abuse |
|
|
Casualist
|
  |
| Joined: 26 Jun 2014 |
| Total Posts: 4443 |
|
|
| 22 May 2016 04:46 PM |
local player = game:GetService("Players").LocalPlayer local character = player.Character or player.CharacterAdded:wait() character:WaitForChild("Head"):WaitForChild("face").texture = "http://www.roblox.com/asset/?id=402348549" |
|
|
| Report Abuse |
|
|
Blizze
|
  |
| Joined: 25 May 2013 |
| Total Posts: 1439 |
|
|
| 22 May 2016 06:33 PM |
It works, but only on studio when I start a server on Roblox Studio. It doesn't work ingame..
|
|
|
| Report Abuse |
|
|
Casualist
|
  |
| Joined: 26 Jun 2014 |
| Total Posts: 4443 |
|
|
| 22 May 2016 06:42 PM |
local player = game:GetService("Players").LocalPlayer local character = player.Character or player.CharacterAdded:wait() character:WaitForChild("Head"):WaitForChild("face").Texture = "http://www.roblox.com/asset/?id=402348549" character.Head.face.Changed:connect(function() character.Head.face.Texture = "http://www.roblox.com/asset/?id=402348549" end) |
|
|
| Report Abuse |
|
|