Claim door script Allowing players to claim multiple tycoons? [closed]
Please provide more explanation in your question. If you explain exactly what you are trying to accomplish, it will be much easier to answer your question correctly.
Code:
01 | local tycoon = script.Parent.Parent.Parent.Parent.Parent |
02 | local gate = script.Parent |
04 | gate.Touched:Connect( function (Hit) |
05 | local Player = game.Players:GetPlayerFromCharacter(Hit.Parent) |
07 | local Humanoid = Hit.Parent:FindFirstChild( "Humanoid" ) |
09 | if Hit.Parent.Humanoid.Health > = 1 then |
10 | if script.Parent.Transparency = = 0 then |
11 | if gate.Transparency = = 0 then |
12 | for i, tycoonModel in pairs (script.Parent.Parent.Parent.Parent.Parent.Parent:GetChildren()) do |
13 | if tycoonModel:IsA( "Model" ) then |
14 | if tycoonModel.Owner.Value ~ = Player then |
15 | if tycoonModel.Owner.Value = = nil then |
16 | if script.Parent.Parent.Parent.Parent.Parent.Owner.Value = = nil then |
17 | gate.Transparency = . 7 |
18 | gate.CanCollide = false |
19 | tycoon.Owner.Value = Player |
20 | Player.TeamColor = script.Parent.Parent.Parent.Parent.Parent.TeamColor.Value |
21 | gate.GateGui.TextLabel.Text = Player.Name.. "'s Tycoon!" |