Sure! Here's an example of a Lua script in Roblox that makes a part transparent:
```lua
-- Get the part you want to make transparent
local part = script.Parent
-- Set the transparency of the part
part.Transparency = 0.5 -- Change this value to set the transparency level (0-1)
```
Make sure to replace "script.Parent" with the actual path to the part you want to make transparent. Also, adjust the transparency value between 0 (fully visible) and 1 (completely transparent) to achieve the desired level of transparency.
give me a lua script roblox code that makes a part transparent
1 answer