Help with If statement?
This works fine aside from the fact that if "Lunch" tool isn't in the Backpack it does nothing.
This is in a GUI, also this is a local script
How can I get this if statement to check if "Lunch" is in the Players Backpack??
this only works if I do have the tool
01 | game.Players.LocalPlayer.Backpack.Lunch:Remove() |
02 | rep.Value = rep.Value - 2 |
03 | s.Dialog.Choice 4. Text = "-2 Rep!" |
04 | s.Dialog.Choice 1. Visible = false |
05 | s.Dialog.Choice 2. Visible = false |
06 | s.Dialog.Choice 3. Visible = false |
07 | s.Dialog.Choice 4. Visible = true |
08 | choosen = thankslunch Write() |
If I don't have the tool this code won't start,
1 | s.Dialog.Choice 4. Text = "Don't Have Lunch" |
The whole function is here;
01 | s.Dialog.Choice 4. MouseButton 1 Click:connect( function () |
02 | if game.Players.LocalPlayer.Backpack.Lunch then |
03 | game.Players.LocalPlayer.Backpack.Lunch:Remove() |
04 | rep.Value = rep.Value - 2 |
05 | s.Dialog.Choice 4. Text = "-2 Rep!" |
06 | s.Dialog.Choice 1. Visible = false |
07 | s.Dialog.Choice 2. Visible = false |
08 | s.Dialog.Choice 3. Visible = false |
09 | s.Dialog.Choice 4. Visible = true |
10 | choosen = thankslunch Write() |
13 | elseif game.Players.LocalPlayer.Backpack.Lunch ~ = nil then |
14 | s.Dialog.Choice 4. Text = "Don't Have Lunch" |
Thanks for reading! Please help! I am confused