This script I have is not working like there is no error and nothing happens? Script:
01 | face 1 = "http://www.roblox.com/asset/?id=162384466" |
02 | face 2 = "http://www.roblox.com/asset/?id=162387197" |
03 | face 3 = "http://www.roblox.com/asset/?id=162387541" |
04 | faces = { face 1 ,face 2 ,face 3 } |
05 | h = script.Parent.Parent.Character.Head |
06 | hft = h.face.Texture |
07 | game.Players.PlayerAdded:connect( function () |
08 | while true do |
09 | wait( 5 ) |
10 | rm = math.random( 1 , #faces) |
11 | if rm = = face 1 then |
12 | htf = face 1 |
13 | end |
14 | if rm = = face 2 then |
15 | htf = face 2 |
I think that would work, but here's what I would do:
01 | local faces = { |
05 |
06 | game.Players.PlayerAdded:connect( function (plr) |
07 | while true do |
08 | wait( 5 ) |
09 | player.Character.Head.face.Texture = faces [ math.random( 1 ,#faces) |
10 | end |
11 | end ) |
Just cleans it up a bit.