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
01 | local plrs = { } |
02 | game.Workspace:WaitForChild( "TpCframe1" ).Touched:Connect( function (hit) |
03 | if hit.Parent:FindFirstChild( "Humanoid" ) and db = = false then |
04 | db = true |
05 | hit.Parent.HumanoidRootPart.CFrame = game.Workspace.TpCframe 2. 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 |
14 | end ) |
15 | while true do |
Try adding a wait like this:
01 | while 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 |
If this doesn't work, just let me know.
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.
01 | local Workspace = (workspace ~ = nil and workspace) or game:GetService( "Workspace" ) |
02 | local Players = game:GetService( "Players" ) |
03 | local ReplicatedStorage = game:GetService( "ReplicatedStorage" ) |
04 | local RunService = game:GetService( "RunService" ) |
05 | local ServerStorage = game:GetService( "ServerStorage" ) |
06 | local CoordinateFrameMarker = Workspace:FindFirstChild( "TpCframe1" ) |
07 | local PlayerList = { } |
08 |
09 | local function swait(num) |
10 | for i = 1 ,(num ~ = nil and num) or 1 , 1 do |
11 | return RunService.Stepped:Wait() |
12 | end |
13 | end |
14 |
15 | repeat |