#how to kill player
12 messages · Page 1 of 1 (latest)
- you check if the part is lime green once.
- why would you check if the part is lime green
if player touch to lime green part player die
for your purpose i think it would be better to do
local part =script.Parent.Part
part.Touched:Connect(function(hit)
local char = hit.Parent
local hum = char:FindFirstChild("Humanoid")
if hum then
hum.Health = 0
end
end)
"I need a full script because I'm new"
I provided the full script you could've easily found on internet, YouTube, devforum
- more
You should be grateful I am a bit nice to new scripters and rewarded your laziness..
When I was talking about the full script, I meant that it could be entered and when you touch the light green block, you die, but there is not even a bit of a light green block here