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

Part Selection Value Not Changing?

Asked by 5 years ago

Hello,

I am making a system when you select an object it selects it with an outline, but for some reason, it doesn't change the "on" value to true therefore it won't turn off.

01mouse.Button1Down:Connect(function()
02local on = false
03    if on == false then
04        local outline = Instance.new('SelectionBox')
05        outline.Parent = mouse.Target
06        outline.Adornee = mouse.Target
07        outline.Name = "Outline"
08        on = true
09    elseif on == true then
10        mouse.Target.Outline:Destroy()
11        on = false
12    end
13end)

Thank You.

2 answers

Log in to vote
0
Answered by
6zk8 95
5 years ago
01mouse.Button1Down:Connect(function()
02local on = false
03    if on == false then
04        local outline = Instance.new('SelectionBox')
05        outline.Parent = mouse.Target
06        outline.Adornee = mouse.Target
07        outline.Name = "Outline"
08        on = true
09    elseif on == true then -- It will never be true because its been set to false at the beginning.
10        mouse.Target.Outline:Destroy()
11        on = false
12    end
13end)

CORRECT VERSION:

01mouse.Button1Down:Connect(function()
02    if on == false then
03        local outline = Instance.new('SelectionBox')
04        outline.Parent = mouse.Target
05        outline.Adornee = mouse.Target
06        outline.Name = "Outline
07        on = true
08    elseif  on == true then
09        mouse.Target.Outline:Destroy()
10        on = false
11    end
12end)
Ad
Log in to vote
0
Answered by 5 years ago

Seems to be throwing an error,

W003: Global 'on' is only used in the enclosing function; consider changing it to local. it happened to me before when testing.

Answer this question