Decal changing script not working, please help shouldn't be too hard to fix

  1. What do you want to achieve? id like to have help fix this script so a decal can change into a different one on loop

  2. What is the issue? script does not work and destroys the decal when i test the game

  3. What solutions have you tried so far? i tried changing the decal IDs a few times but did not work

script:

while true do
	script.Parent.Texture = "rbxassetid://(9278143687)"
	wait(0.3)
	script.Parent.Texture = "rbxassetid://(9278144344)"
	wait(0.3)
	script.Parent.Texture = "rbxassetid://(9278144829)"
	wait(0.3)
end

image

if someone can help me fix this script or share a different script that does the same thing it would be greatly appreciated!

while true do
	script.Parent.Texture = "rbxassetid://9278143687"
	wait(0.3)
	script.Parent.Texture = "rbxassetid://9278144344"
	wait(0.3)
	script.Parent.Texture = "rbxassetid://9278144829"
	wait(0.3)
end
1 Like

remove the parentheses?

i dont think they use those

1 Like

thank you! totally forgot about removing the parentheses