Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Why is this not working?

Asked by 10 years ago

This script I have is not working like there is no error and nothing happens? Script:

04faces = {face1,face2,face3}
05h = script.Parent.Parent.Character.Head
06hft = h.face.Texture
07game.Players.PlayerAdded:connect(function()
08while true do
09wait(5)
10rm = math.random(1, #faces)
11if rm == face1 then
12    htf = face1
13end
14if rm == face2 then
15    htf = face2
View all 21 lines...

1 answer

Log in to vote
1
Answered by
Perci1 4988 Trusted Moderation Voter Community Moderator
10 years ago

I think that would work, but here's what I would do:

01local faces = {
05 
06game.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
11end)

Just cleans it up a bit.

Ad

Answer this question