Whats wrong with this dorm Room Script?
Im trying to make it, where it Inserts the player who touched the Brick 'Invisi' into a list that will allow it to open the door, and it isnt Letting me, No errors.
01 | function onClicked (playerWhoClicked) |
03 | for _,v in pairs (game.Workspace.floor:GetChildren()) do |
04 | v [ "Claim Dorm" ] .Invisi.Touched:connect( function (hit) |
05 | for _,l in pairs (game.Players:GetChildren()) do |
07 | local humanoid = l.Character:findFirstChild( "Humanoid" ) |
09 | script.Parent.Parent.Name = l.Name.. "'s Dorm" |
10 | table.insert(l.Name, #owner) |
14 | script.Parent.CanCollide = false |
15 | script.Parent.Parent [ "Smooth Block Model" ] .CanCollide = false |
17 | script.Parent.CanCollide = true |
18 | script.Parent.Parent [ "Smooth Block Model" ] .CanCollide = true |
25 | script.Parent.ClickDetector.MouseClick:connect(onClicked) |