Blue character script showcase

I am currently working on this script that when you die it turns your whole body into blue and it seems fun because in some maps games and something right?

Use it and what do you think :thinking:

local player = game.Players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()

local function onCharacterAdded(char)
    local humanoid = char:WaitForChild("Humanoid")
    humanoid.Died:Connect(function()
        for _, part in pairs(char:GetChildren()) do
            if part:IsA("BasePart") then
                part.BrickColor = BrickColor.new("Bright blue")
            end
        end
    end)
end

player.CharacterAdded:Connect(onCharacterAdded)
if character then
    onCharacterAdded(character)
end
1 Like

Well its very… basic, and I don’t really see a reason anyone would use this?

All it does it turn your character blue. no extra effects no nothing.

It’d be cool if it was an effect like this:


Buuut it isn’t, so all I can really say is it works and its basic?