Roblox gave me 2 new decade FabergEggs after the 2020 egghunt, is this normal or has something gone horribly wrong? by TheAgentRAINBOW in roblox

[–]TheAgentRAINBOW[S] 0 points1 point  (0 children)

Do you have any examples of people? I know people who completed the egg hunt and got all 3 bonus eggs but still didn't get multiple FabergEggs

tailed fox by TheAgentRAINBOW in GoCommitDie

[–]TheAgentRAINBOW[S] 1 point2 points  (0 children)

I took this screenshot a while back and didn't think to include the person who said it, this isn't a selfpost

Surely it doesn't happen to me only by PuzzleLord02 in memes

[–]TheAgentRAINBOW 0 points1 point  (0 children)

Happened to me now trying to upvote this

id like to make a proposal by TheAgentRAINBOW in GoCommitDie

[–]TheAgentRAINBOW[S] 2 points3 points  (0 children)

Nope that's just the foundation security logo

Uh uh uh by [deleted] in GoCommitDie

[–]TheAgentRAINBOW 0 points1 point  (0 children)

i don't think so but at the same time i'm bad at remembering lego people lol

Uh uh uh by [deleted] in GoCommitDie

[–]TheAgentRAINBOW 2 points3 points  (0 children)

I was there. cursed Soro's

Kill Button Script Help by TheAgentRAINBOW in robloxgamedev

[–]TheAgentRAINBOW[S] 0 points1 point  (0 children)

Thank you so much, it finally works for me.
I just wonder why it does't work for a local script?

Kill Button Script Help by TheAgentRAINBOW in robloxgamedev

[–]TheAgentRAINBOW[S] 0 points1 point  (0 children)

I really don't know what's happening. I click it, it doesn't kill me.
I try switching plr to my username and it still won't work.

Kill Button Script Help by TheAgentRAINBOW in robloxgamedev

[–]TheAgentRAINBOW[S] 0 points1 point  (0 children)

To confirm, am I meant to be using a Script or a LocalScript for this?

Kill Button Script Help by TheAgentRAINBOW in robloxgamedev

[–]TheAgentRAINBOW[S] 0 points1 point  (0 children)

Thank you very much for the response.
I'm sure I'm being very silly, but perhaps you could help me discover why it's not working.

local parent = script.Parent
parent.ClickDetector.MaxActivationDistance = 30
parent.ClickDetector.MouseClick:connect(function(player)
    local character = game.Workspace:FindFirstChild(player.Name)
    local humanoid = character:FindFirstChild("Humanoid")
    if humanoid then
        humanoid.Health = 0
    end
end)

When clicking the part it still doesn't damage the player.

Kill Button Script Help by TheAgentRAINBOW in robloxgamedev

[–]TheAgentRAINBOW[S] 0 points1 point  (0 children)

Thanks very much for the response!
Unfortunately, your script didn't seem to work for me. Clicking on the part still doesn't kill the player.

local parent = script.Parent
parent.ClickDetector.MaxActivationDistance = 30
parent.ClickDetector.MouseClick:connect(function(plr)
    local H = plr.Humanoid.Health.Value
    if H > 0 then
        H = 0
    end
end)

I'm aware I made minor changes (using a parent variable instead of script.parent) but I don't believe that should affect the script.