RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"create a text button that shows how many players are playing in a different game place."
-- Local script inside the text button local textButton = script.Parent local Players = game:GetService("Players") local TeleportService = game:GetService("TeleportService") local targetPlaceId = 123456789 -- Replace with the target game's place ID local function updatePlayerCount() local success, playerCount = pcall(function() return TeleportService:GetPlayerCountAsync(targetPlaceId) end) if success then textButton.Text = "Players in other place: " .. playerCount else textButton.Text = "Error fetching player count" end end updatePlayerCount() while true do wait(60) -- Update every minute updatePlayerCount() end