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:
01 | local GUI = script.Parent |
02 | local Button = GUI:WaitForChild( "Open/Close" ) |
03 | local TButton = Button.Frame.Frame [ "N/A" ] |
07 | Button.MouseButton 1 Down:Connect( function () |
11 | if State = = "Closed" then |
13 | Button.Frame.Frame:TweenPosition(UDim 2. new( 0 , 0 , 0 , 0 ),Enum.EasingDirection.InOut,Enum.EasingStyle.Quint, 1 , true ) |
14 | elseif State = = "Opened" then |
16 | Button.Frame.Frame:TweenPosition(UDim 2. new( 0 , 0 ,- 1 , 0 ),Enum.EasingDirection.InOut,Enum.EasingStyle.Quint, 1 , true ) |
29 | Label = "Foundation Personnel" |
32 | Label = "Security Department" |
35 | Label = "Mobile Task Forces" |
38 | Label = "Department of External Affairs" |
41 | Label = "Engineering and Technical" |
44 | Label = "Ethics Committee" |
47 | Label = "Intelligence Agency" |
50 | Label = "Internal Security Department" |
53 | Label = "Medical Department" |
56 | Label = "Rapid Response Team" |
59 | Label = "Scientific Department" |
64 | local tindex = Teams [ 0 ] |
65 | for _,B in pairs (Button.Frame.Frame:GetChildren()) do |
66 | if B:IsA( "TextButton" ) then |
67 | B.MouseButton 1 Down:Connect( function () |
68 | if B.Name = = "Up" then |
69 | TButton.Name = tindex + 1 .. ".Label" |
70 | TButton.Text = tindex + 1 .. ".Label" |
71 | elseif B.Name = = "Down" then |
72 | TButton.Name = tindex + 1 .. ".Label" |
73 | TButton.Text = tindex + 1 .. ".Label" |
75 | game.ReplicatedStorage.updateTeam:FireServer(B.Name) |
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.