-- LocalScript (place in StarterPlayerScripts) local Players = game:GetService("Players") local player = Players.LocalPlayer -- Create a ScreenGui local screenGui = Instance.new("ScreenGui") screenGui.Name = "BustANutGUI" screenGui.ResetOnSpawn = false screenGui.Parent = player:WaitForChild("PlayerGui") -- Create the TextLabel local label = Instance.new("TextLabel") label.Parent = screenGui label.Size = UDim2.new(1, 0, 0.2, 0) label.Position = UDim2.new(0, 0, 0.4, 0) label.Text = "bust a nut" label.TextColor3 = Color3.new(1, 1, 1) label.TextScaled = true label.BackgroundTransparency = 1 label.Font = Enum.Font.GothamBlack -- Optional: Make it disappear after a few seconds wait(3) label:Destroy()