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

My while true do loop will not run at all, why is this so?

Asked by 4 years ago
Edited 4 years ago

So I am trying to make an elevator game. But the main code will not run, why is this so? There's no errors

My code is

01local plrs = {}
02game.Workspace:WaitForChild("TpCframe1").Touched:Connect(function(hit)
03if hit.Parent:FindFirstChild("Humanoid") and db == false then
04    db = true
05    hit.Parent.HumanoidRootPart.CFrame = game.Workspace.TpCframe2.CFrame
06    local player = game.Players:GetPlayerFromCharacter(hit)
07    if not table.find(plrs,player) then -- detecting if player is not in the table
08        table.insert(plrs,player) -- adding player in table
09            print("Added player to table.")
10            wait(1)
11            db = false
12        end
13    end
14end)
15while true do
View all 62 lines...

2 answers

Log in to vote
3
Answered by 4 years ago

Try adding a wait like this:

01while true do
02    if #plrs >= 1 then
03        wait(1)
04        for i = 10,0,-1 do
05            wait(1)
06            game.ReplicatedStorage.Timer.Value = i
07            if i == 0 then
08                local event = game.ServerStorage.Floors:GetChildren()
09                local chosenEvent = event[math.random(1,#event)]
10                local clonedEvent = chosenEvent:Clone()
11                clonedEvent.Parent = workspace
12                wait(2)
13                open()
14                wait(0.5)
15                if chosenEvent.Name == "No Chill" then
View all 36 lines...

If this doesn't work, just let me know.

0
this would work, upvoted raid6n 2196 — 4y
Ad
Log in to vote
1
Answered by 4 years ago

I don't necessarily see any issues but here's my rewrite because I'm not going to just read this and leave you hanging.

01local Workspace = (workspace ~= nil and workspace) or game:GetService("Workspace")
02local Players = game:GetService("Players")
03local ReplicatedStorage = game:GetService("ReplicatedStorage")
04local RunService = game:GetService("RunService")
05local ServerStorage = game:GetService("ServerStorage")
06local CoordinateFrameMarker = Workspace:FindFirstChild("TpCframe1")
07local PlayerList = {}
08 
09local function swait(num)
10    for i = 1,(num ~= nil and num) or 1,1 do
11        return RunService.Stepped:Wait()
12    end
13end
14 
15repeat
View all 93 lines...

Answer this question