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

Help with If statement?

Asked by
Xl5Xl5 65
9 years ago

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

01game.Players.LocalPlayer.Backpack.Lunch:Remove() --- To remove it
02rep.Value = rep.Value - 2
03s.Dialog.Choice4.Text = "-2 Rep!"
04s.Dialog.Choice1.Visible = false
05s.Dialog.Choice2.Visible = false
06s.Dialog.Choice3.Visible = false
07s.Dialog.Choice4.Visible = true
08choosen = thankslunch Write()
09wait()
10s:Destroy()

If I don't have the tool this code won't start,

1s.Dialog.Choice4.Text = "Don't Have Lunch"
2s:Destroy()

The whole function is here;

01s.Dialog.Choice4.MouseButton1Click:connect(function()
02if game.Players.LocalPlayer.Backpack.Lunch then
03game.Players.LocalPlayer.Backpack.Lunch:Remove()
04rep.Value = rep.Value - 2
05s.Dialog.Choice4.Text = "-2 Rep!"
06s.Dialog.Choice1.Visible = false
07s.Dialog.Choice2.Visible = false
08s.Dialog.Choice3.Visible = false
09s.Dialog.Choice4.Visible = true
10choosen = thankslunch Write()
11wait()
12s:Destroy()
13elseif game.Players.LocalPlayer.Backpack.Lunch ~= nil then
14s.Dialog.Choice4.Text = "Don't Have Lunch"
15s:Destroy()
16end
17end)

Thanks for reading! Please help! I am confused

1
Check for the tool using this: [ if game.Players.LocalPlayer.Backpack:FindFirstChild("Lunch") == nil then ] this will fire if Lunch is not found in the backpack. Hope this helped! minikitkat 687 — 9y
0
Thanks! that worked! :D Xl5Xl5 65 — 9y

Answer this question