local Players = game:GetService ("Players") local player = Players.LocalPlayer local gui = Instance.new("ScreenGui") gui.ResetOnSpawn = false gui.Parent = player:WaitForChild("PlayerGui") local label = Instance.new("TextLabel") label.Size = UDim2.new(1, 0, 1, 0) label.BackgroundColor3 = Color3.fromRGB(255, 255, 255) label.TextColor3 = Color3.fromRGB(0, 0, 0) label.Font = Enum.Font.SourceSansBold label.TextScaled = true label.Text = "YOU ARE AN IDIOT!" label.Parent = gui while true do label.Rotation = math.random(-10, 10) label.Position = UDim2.new(0, math.random(-20, 20), 0, math.random(-20, 20)) task.wait(0.1) end