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

This script is where the part appears and disappears, but does not work, any help?

Asked by 2 years ago
Edited 2 years ago

my script i wrote is under this

local part = script.Parent

while true do 
    part.Transparency = 1 
    part.CanCollide = false
    wait(5)
    part.Transparency = 0
    part.CanCollide = true
    wait(5)
    part.Transparency = 1 
    part.CanCollide = false
end
0
When I run it, it works perfectly fine. Make sure you put this code in a *Script* not a *LocalScript*. appxritixn 2235 — 2y

1 answer

Log in to vote
0
Answered by
Nozazxe 107
2 years ago

Extremely simple answer here. Not even really scripting-ey. The problem is your using a local script. use a SCRIPT

Ad

Answer this question