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

I have a TV, yet the decal isn't showing up. How do I fix this?

Asked by
Mycran 7
4 years ago

I have a script that is meant to change the image on the screen. The image isn't showing up and isn't changing. How do I fix this?

local screen = game.Workspace.TV.Screen
local video = game.Workspace.TV.Screen.Video

while true do
    video.Texture = "rbxassetid://5147686130"
    wait(5)
    video.Texture = "rbxassetid://5147696770"
    wait(5)
    video.Texture = "rbxassetid://5147704751"
    wait(5)
    video.Texture = "rbxassetid://5147852494"
    wait(5)
end

2 answers

Log in to vote
0
Answered by 4 years ago
Edited 4 years ago

Your script appears to be correct. The only answer I can come up with is to find which side the decals are supposed to go on. You can do that by going in your explorer tab, putting the decal in your tv, open your properties tab and find Decal > Surface > Front. You'll want to change front until your decal is appearing. If this doesn't work please tell me.

Edit: I found a new solution:

You are using rbxassetid. According to here, you'll want to have your texture values to be "http://www.roblox.com/asset/?id=ID"

0
It is not working. Front is the correct side. Mycran 7 — 4y
0
Is the decal's transparency set to 0? If it is set to 1 then it won't show IAmNotTheReal_MePipe 418 — 4y
0
where do i put the number on the new link Mycran 7 — 4y
0
doesn't work either, it's unreleased Mycran 7 — 4y
0
fixed it, i messed up the parenting Mycran 7 — 4y
Ad
Log in to vote
0
Answered by
Mycran 7
4 years ago

fixed

Answer this question