Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Whats wrong with this dorm Room Script?

Asked by
IcyEvil 260 Moderation Voter
10 years ago

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.

01function onClicked (playerWhoClicked)
02    local owner = { }
03for _,v in pairs(game.Workspace.floor:GetChildren()) do
04v["Claim Dorm"].Invisi.Touched:connect(function(hit)
05    for _,l in pairs(game.Players:GetChildren())do
06        if hit.Parent then
07            local humanoid = l.Character:findFirstChild("Humanoid")
08            if humanoid then
09                script.Parent.Parent.Name = l.Name.."'s Dorm"
10                table.insert(l.Name, #owner)
11            end
12            end
13    end
14    script.Parent.CanCollide = false
15    script.Parent.Parent["Smooth Block Model"].CanCollide = false
View all 25 lines...

Answer this question