local button = script.Parent -- The TextButton local url = "Rscripts.net" -- Replace with your desired URL -- Set the button text to "RSCRIPTS HUB" button.Text = "RSCRIPTS HUB" button.MouseButton1Click:Connect(function() -- This will open the URL in the user's browser game:GetService("GuiService"):OpenBrowserWindow(url) end)