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

Is there an easier way to write this, without writing many times if I add more?

Asked by 5 years ago

Is there an easier way to write this, without writing many times if I add more? The models are from replicated storage

01textBox:GetPropertyChangedSignal("Text"):Connect(function()
02    if textBox.Text == "DropperOne" then
03        placementModule:new("Dropper1", game.ReplicatedStorage.Models, plot.Plot, plot.PlacedObjects, false, true)
04        textBox.Text = ""
05        textBox.FocusLost = true       
06    elseif textBox.Text == "DropperTwo" then
07        placementModule:new("Dropper2", game.ReplicatedStorage.Models, plot.Plot, plot.PlacedObjects, false, true)
08        textBox.Text = ""
09        textBox.FocusLost = true
10    elseif textBox.Text == "DropperThree" then
11        placementModule:new("Dropper3", game.ReplicatedStorage.Models, plot.Plot, plot.PlacedObjects, false, true)
12        textBox.Text = ""
13        textBox.FocusLost = true       
14    elseif textBox.Text == "Conveyor" then
15        placementModule:new("Conveyor", game.ReplicatedStorage.Models, plot.Plot, plot.PlacedObjects, false, true)
16        textBox.Text = ""
17        textBox.FocusLost = true   
18    end
19end)

Thanks for the Help!

1 answer

Log in to vote
2
Answered by 5 years ago

There actually would be a way to shrink this using, as you might have guessed, dictionaries.

01local texts = {
02DropperOne = "DropperOne",
03DropperTwo = "DropperTwo",
04DropperThree = "DropperThree",
05Conveyor = "Conveyor",
06}
07textBox:GetPropertyChangedSignal("Text"):Connect(function()
08    if texts[textBox.Text] then -- check if it exists in our dictionary
09        local val = texts[textBox.Text]; -- now that it exists, lets assign it's value to a variable
10        placementModule:new((val), game.ReplicatedStorage.Models, plot.Plot, plot.PlacedObjects, false, true) -- use the ModuleScript with the value we got
11        textBox.Text = ""
12        textBox.FocusLost = true
13    end
14end)
0
Another question: is there a way to have the texbox lose its focus automatically? awesomemode14 68 — 5y
Ad

Answer this question