test.forest
Tracked since by Marquitop2018XD
Concurrent players
Metrics over time
About & history
local Players = game:GetService("Players") local player = Players.LocalPlayer local playerGui = player:WaitForChild("PlayerGui") local screenGui = Instance.new("ScreenGui") screenGui.Name = "ForestGui" screenGui.ResetOnSpawn = false screenGui.Parent = playerGui local label = Instance.new("TextLabel") label.Name = "ForestLabel" label.Size = UDim2.new(0, 240, 0, 80) label.Position = UDim2.new(0.5, -120, 0.1, 0) label.BackgroundColor3 = Color3.fromRGB(24, 52, 32) label.BackgroundTransparency = 0.1 label.BorderSizePixel = 0 label.Text = "forest" label.TextColor3 = Color3.fromRGB(240, 255, 240) label.Font = Enum.Font.GothamBold label.TextScaled = true label.Parent = screenGui local corner = Instance.new("UICorner") corner.CornerRadius = UDim.new(0, 16) corner.Parent = label local stroke = Insta

