Gui keeps appearing even though I break the loop?
Hello there. I'm trying to make a local script so that whenever a player enters a house, a gui will show whose house it is.
01 | local houseRegions = game.Workspace:WaitForChild( "HouseRegions" ) |
06 | for i, v in pairs (houseRegions:GetChildren()) do |
09 | local region = Region 3. new(v.Position - (v.Size/ 2 ), v.Position + (v.Size/ 2 )) |
10 | local parts = workspace:FindPartsInRegion 3 WithWhiteList(region, game.Players.LocalPlayer.Character:GetDescendants()) |
12 | for _, part in pairs (parts) do |
13 | if part:FindFirstAncestor(game.Players.LocalPlayer.Name) then |
22 | if script.Parent.HouseRegions [ v.Name ] then |
23 | script.Parent.House.TextLabel.Text = script.Parent.HouseRegions [ v.Name ] .Value |
24 | script.Parent.House.TextLabel.Visible = true |
27 | script.Parent.House.TextLabel.TextTransparency = i |
34 | script.Parent.House.TextLabel.TextTransparency = i |
38 | script.Parent.House.TextLabel.Visible = false |
43 | script.Parent.House.TextLabel.Text = script.Parent.Mapleburg.Value |
44 | script.Parent.House.TextLabel.Visible = true |
47 | script.Parent.House.TextLabel.TextTransparency = i |
54 | script.Parent.House.TextLabel.TextTransparency = i |
58 | script.Parent.House.TextLabel.Visible = false |
Everything seems to be working, but the gui that indicates the stuff keeps appearing. (yes I've tried a replica of alvinblox's region3 tutorial.)