| |
|
|
| 05 May 2013 08:46 PM |
function onTouched(part) local Player = part.Parent:FindFirstChild("Humanoid") if Player~=nil then game.Workspace.Splash1.Transparency = 0 end end script.Parent.Touched:connect(onTouched)
|
|
|
| Report Abuse |
|
|
| |
|
|
| 05 May 2013 08:51 PM |
| What do you want it to do? |
|
|
| Report Abuse |
|
|
| |
|
| |
|
|
| 05 May 2013 09:27 PM |
| My script does do that >-> |
|
|
| Report Abuse |
|
|
| |
|
|
| 05 May 2013 09:44 PM |
-sigh- Does it 'work' now?
function onTouched(part) local Player = part.Parent:FindFirstChild("Humanoid") if Player~=nil then if game.Workspace.Splash1.Transparency == 0 then game.Workspace.Splash1.Transparency = 1 else game.Workspace.Splash1.Transparency = 0 end end end script.Parent.Touched:connect(onTouched) |
|
|
| Report Abuse |
|
|