I know this will be easy but I want to get help. Basically I have this function(well stuff inside a function) here. It works completely but I am unsure on how to end one if statement while keeping another going.
1 | if #_G.getTeam(game.Teams.Survivors) = = 0 then -- I want to keep this running |
2 | if first_infected.StarterGear.Revolver ~ = nil then --I want to end this. |
3 | first_infected.StarterGear.Revolver:Destroy() -- end here |
4 | _G.infected() |
5 | game.Workspace.Field 1. Parent = game.Lighting |
6 | wait( 3 ) |
7 | game.Lighting.Field 1. Parent = game.Workspace |
So basically where can I put the end to end the second if statement? Do I make sense. Thanks!
You can by ending the code with an 'end', let you show you an example (With a different script);
01 | local Numbers = 5 --This is what we're going to use |
02 | if Numbers = = 5 then --This is our first 'if' statement |
03 | print ( "Five! :D" ) --This will print, well, 'Five! :D' |
04 | Numbers = 4 --Then this'll change Numbers to 4 |
05 | if not Numbers = = 5 then --If it isn't equal to five |
06 | print ( "Not equal to five. :c" ) --This'll print 'Not equal to five. :c' |
07 | else --Elseif it is |
08 | print ( "Nope :c" ) --It'll print 'Nope :c' |
09 | end --This ends the second 'if' statement, or ends the second 'if' coding |
10 | else --Elseif it isn't |
11 | print ( "Nope. :c" ) --It'll print 'Nope :c' |
12 | end --This ends the first 'if' statement, or ends the first 'if' coding |
If I didn't explain good enough, just let me know and I'll try and explain it better. :) (Sorry, tired today, so sorry if I did corrections, or didn't explain too well) Hope this helped!