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

Why am I getting an error of nil when I click the GUI button to switch?

Asked by
bt6k 23
4 years ago

So here is my script,

01local GUI = script.Parent
02local Button = GUI:WaitForChild("Open/Close")
03local TButton = Button.Frame.Frame["N/A"]
04 
05local State = "Closed"
06local DB = false
07Button.MouseButton1Down:Connect(function()
08    if DB == false then
09        DB = true
10        spawn(function()
11            if State == "Closed" then
12                State = "Opened"
13                Button.Frame.Frame:TweenPosition(UDim2.new(0,0,0,0),Enum.EasingDirection.InOut,Enum.EasingStyle.Quint,1,true)
14            elseif State == "Opened" then
15                State = "Closed"
View all 79 lines...

It is a team script that should change your teams with the GUI but it does not..

And I am getting the error of:

Players.bt6k.PlayerGui.TeamGUI.LocalScript:72: attempt to perform arithmetic (sub) on nil and number

I am quite new to lua, and was wondering what might cause it?

1 answer

Log in to vote
0
Answered by 4 years ago

Hello.


Explaining the Error:

The error: "attempt to perform arithmetic (sub) on nil and number" means that you are trying to use math on something that doesn't exist (nil) and a number.


Solution:

Things like table[0] or [table[-1] do not exist because a table's index begins at 1. That was exactly what you were doing. I belive you accidentally used "-" instead of "+" so I've fixed that.


Fixed Script:

01local GUI = script.Parent
02local Button = GUI:WaitForChild("Open/Close")
03local TButton = Button.Frame.Frame["N/A"]
04 
05local State = "Closed"
06local DB = false
07Button.MouseButton1Down:Connect(function()
08    if DB == false then
09        DB = true
10        spawn(function()
11            if State == "Closed" then
12                State = "Opened"
13                Button.Frame.Frame:TweenPosition(UDim2.new(0,0,0,0),Enum.EasingDirection.InOut,Enum.EasingStyle.Quint,1,true)
14            elseif State == "Opened" then
15                State = "Closed"
View all 79 lines...

Please accept my answer if it helps. There's been a bug going around where you can't accept answers for newer users. If that happens, try going onto incognito mode.

0
Does not seem to be working... bt6k 23 — 4y
0
Does it still error? youtubemasterWOW 2741 — 4y
0
Yes. Same exact thing. bt6k 23 — 4y
0
i do not know what is wrong. youtubemasterWOW 2741 — 4y
Ad

Answer this question