Button selection

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:
image

Thanks!

This reduces the :IsA() checks. And condenses the code. Not sure if you could make it simpler haha.

wow! this is way above my skill level! I don’t know at all what half of this code is doing :joy:
But thank you! I’ll use it :smiley:

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.