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

Why doesn't the tv show anything when i add my pictures?

Asked by 6 years ago

When I add my own pictures the tv only shows Black. Anyway to solve this?

while true do
p = script.Parent.Texture
p.Texture = "http://www.roblox.com/asset/?id=43074372"
wait(0.5)
p.Texture = "http://www.roblox.com/asset/?id=1064333394"
wait(0.5)
p.Texture = "http://www.roblox.com/asset/?id=43074443"
wait(0.5)
p.Texture = "http://www.roblox.com/asset/?id=43074405"
wait(0.5)
end
0
change p = script.Parent.Texture to p = script.Parent because when you call p atm you are saying script.Parent.Texture.Texture abnotaddable 920 — 6y
0
is Texture the name of the "Item" that you want to change the texture Id with? greatneil80 2647 — 6y
0
Im using a DECAL dominikrni -12 — 6y

2 answers

Log in to vote
0
Answered by 6 years ago
Edited 6 years ago
while true do
p = script.Parent -- You  already said 4x Texture  theres no script.Parent.Texture.Texture
p.Texture = "http://www.roblox.com/asset/?id=43074372"
wait(0.5)
p.Texture = "http://www.roblox.com/asset/?id=1064333394"
wait(0.5)
p.Texture = "http://www.roblox.com/asset/?id=43074443"
wait(0.5)
p.Texture = "http://www.roblox.com/asset/?id=43074405"
wait(0.5)
end

The problem was there is no script.Parent.Texture.Texture

Ad
Log in to vote
0
Answered by 6 years ago

Now only my decals wont show up!

Answer this question