local Players = game:GetService("Players") local StarterGui = game:GetService("StarterGui") local player = Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() -- Function to remove face and arms local function removeParts() if character then -- Remove face local head = character:FindFirstChild("Head") if head then local face = head:FindFirstChild("face") if face then face:Destroy() end end -- Remove arms local rightArm = character:FindFirstChild("Right Arm") local leftArm = character:FindFirstChild("Left Arm") if rightArm then rightArm:Destroy() end if leftArm then leftArm:Destroy() end end end -- Function to show notifications local function showNotifications() StarterGui:SetCore("SendNotification", { Title = "Script Status", Text = "Script executed", Duration = 3 }) wait(1) StarterGui:SetCore("SendNotification", { Title = "Bambi'd", Text = "You have been bambied", Duration = 3 }) end -- Execute the script removeParts() showNotifications() -- Handle character respawn player.CharacterAdded:Connect(function(newCharacter) character = newCharacter wait(0.5) -- Wait for character to fully load removeParts() end)