#cant turn visible
7 messages · Page 1 of 1 (latest)
elseif equipped.Value == 14 then
print("hi")
task.wait()
if char then
for i,v in pairs(char:GetDescendants()) do
if v:IsA("BasePart") and v.Name ~= "HumanoidRootPart" then v.Transparency = 1 end
print("invisible")
wait(2)
if v:IsA("BasePart") and v.Name ~= "HumanoidRootPart" then v.Transparency = 0
print("uninvisible")
break```
why add break
i dont wanna make it invisible forever
break stops the loop
that means parts wont get visible
cuz you literally said it to stop doing it job