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

Gui keeps appearing even though I break the loop?

Asked by
bluzorro 417 Moderation Voter
5 years ago

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.

01local houseRegions = game.Workspace:WaitForChild("HouseRegions")
02 
03local found = false
04 
05while wait(1) do
06    for i, v in pairs(houseRegions:GetChildren()) do
07        found = false
08 
09        local region = Region3.new(v.Position - (v.Size/2), v.Position + (v.Size/2))
10        local parts = workspace:FindPartsInRegion3WithWhiteList(region, game.Players.LocalPlayer.Character:GetDescendants())
11 
12        for _, part in pairs(parts) do
13            if part:FindFirstAncestor(game.Players.LocalPlayer.Name) then
14                found = true
15                break
View all 61 lines...

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.)

0
Your only breaking the for loop, not the while wait loop SmartNode 383 — 5y
0
Which line is it? marioman1932 48 — 5y
0
it's not an error. the script works fine but the screengui keeps appearing even though i break the for loop. bluzorro 417 — 5y

2 answers

Log in to vote
0
Answered by
1lO_Ql1 -1
5 years ago
Edited 5 years ago

Try making it a while [randomval] == true do and when you want it to stop, make the value to false.

1local myval = true
2local num = 0
3while myval == true do
4    num = num + 1
5    print(num)
6    if num == 10 then
7        myval = false
8    end
9end
0
it wouldn't work if i do that either. bluzorro 417 — 5y
Ad
Log in to vote
0
Answered by
bluzorro 417 Moderation Voter
5 years ago

Found a solution, even though I had to rewrite the whole script.

Answer this question