RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make 3 decals change on a parts front side"
-- Local script local part = script.Parent local decals = {"rbxassetid://1", "rbxassetid://2", "rbxassetid://3"} -- replace with your decal ids local index = 1 while true do local decal = Instance.new("Decal") decal.Texture = decals[index] decal.Face = Enum.NormalId.Front decal.Parent = part wait(2) -- wait for 2 seconds before changing the decal decal:Destroy() -- remove the old decal index = index + 1 if index > #decals then index = 1 -- reset the index if it exceeds the number of decals end end