local UserInputService = game:GetService("UserInputService") local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer local Mouse = LocalPlayer:GetMouse() -- Create ScreenGui and TextLabel local screenGui = Instance.new("ScreenGui", LocalPlayer:WaitForChild("PlayerGui")) local textLabel = Instance.new("TextLabel", screenGui) -- Configure the TextLabel textLabel.Text = "sukuna" textLabel.Font = Enum.Font.Cartoon -- Use Cartoon font for a sharper look textLabel.TextSize = 48 textLabel.TextColor3 = Color3.fromRGB(255, 0, 0) -- Red color textLabel.BackgroundTransparency = 1 -- Make the background transparent textLabel.Position = UDim2.new(0.5, 0, 0.1, 0) -- Position it at the top center of the screen textLabel.AnchorPoint = Vector2.new(0.5, 0) -- Set anchor point to center horizontally textLabel.TextStrokeTransparency = 0 -- Add stroke to make it stand out (optional) textLabel.TextStrokeColor3 = Color3.fromRGB(0, 0, 0) -- Black stroke for contrast (optional) -- Input handling UserInputService.InputBegan:Connect(function(input, gameProcessed) if gameProcessed then return end if input.KeyCode == Enum.KeyCode.C then local target = Mouse.Target if target and target.Parent then local head = target.Parent:FindFirstChild("Head") local leftArm = target.Parent:FindFirstChild("Left Arm") local rightArm = target.Parent:FindFirstChild("Right Arm") local humanoid = target.Parent:FindFirstChildOfClass("Humanoid") if humanoid then if head then head:Destroy() end if leftArm then leftArm:Destroy() end if rightArm then rightArm:Destroy() end end end end end)