Redstone in Roblox, Script not Working, Needs to be fixed, nothing happens?
02 | function onTouched(hit) |
03 | local a = hit:FindFirstChild( "Power" ) |
04 | if (a = = nil ) = = false then |
05 | if (a.Value = = nil ) = = false |
06 | then script.Parent.Power.Value = true |
07 | else script.Parent.Power.Value = false |
13 | script.Parent.touched:connect(onTouched) |
This script doesn't work.
Basically in workspace there is a part which is supposed to be like redstone (except in Roblox), if this part contacts another part, it goes to see if it has a bool value called "Power", if it finds a bool value called power it will check it's value, if it's value is true, then the part's own power value will be put onto true, and transmit it to the next part. Please help.