RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"add a bullet counter gui"
-- local script (StarterGui) local player = game.Players.LocalPlayer local screenGui = Instance.new("ScreenGui", player.PlayerGui) local bulletCounter = Instance.new("TextLabel", screenGui) bulletCounter.Text = "Bullets: 0" bulletCounter.TextColor3 = Color3.fromRGB(255, 255, 255) bulletCounter.BackgroundColor3 = Color3.fromRGB(0, 0, 0) bulletCounter.Position = UDim2.new(0.9, 0, 0.9, 0) -- position in bottom right corner bulletCounter.Size = UDim2.new(0, 100, 0, 50) -- size of the label