In a local script in TextButton.
function onButtonActivated() script.Parent.Parent.Enabled = false game.StarterGui.Weapons.Enabled = true end script.Parent.Activated:Connect(onButtonActivated)
The first part works but not the second. can you please help?
game.StarterGui
Is not the local players gui you would need to do
game.Players.LocalPlayer.PlayerGui.Weapons.Enabled = true