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

How do I make it so a block will change decals over and over again when people are playing it?

Asked by 10 years ago

I need to know how to do this to put some ads on one.

1 answer

Log in to vote
0
Answered by
Tesouro 407 Moderation Voter
10 years ago

A loop.

while true do
    decal.Texture = "" -- put here the asset of the image
    wait() -- how long it will be showed
    -- just repeat with other ads
end
Ad

Answer this question