Hey guys, the following code works, but I feel like there’s a simpler solution
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local UpdateGridSizeEvent = ReplicatedStorage:WaitForChild("UpdateGridSize")
for i, v in pairs(script.Parent:GetChildren()) do
if v:IsA("TextButton") then
v.MouseButton1Click:Connect(function()
for g, b in pairs(script.Parent:GetChildren()) do
if b:IsA("TextButton") then
b:SetAttribute("Selected", false)
b.BackgroundColor3 = Color3.fromRGB(255,255,255)
end
end
v:SetAttribute("Selected", true)
UpdateGridSizeEvent:FireServer(v.Text)
v.BackgroundColor3 = Color3.fromRGB(130,130,130)
end)
end
end
And here’s the parenting structure:
Thanks!