of     1   

dudeguyperson
#146930Wednesday, September 12, 2007 1:03 AM GMT

well here ya go,right from my place the blender script!: local debounce = false function getPlayer(humanoid) -- find the owning player of a humanoid. local players = game.Players:children() for i = 1, #players do if players[i].Character ~= nil then if players[i].Character.Humanoid == humanoid then return players[i] end end end return nil end function displayMsg(humanoid) local torso = humanoid.Parent.Torso local player = getPlayer(humanoid) if player ~= nil then local message = Instance.new("Message") message.Text = "gr8 now i have to clean up.................." message.Parent = player humanoid.Health = 0 wait(15) message.Parent = nil end end function onTouched(hit) local humanoid = hit.Parent:findFirstChild("Humanoid") if humanoid~=nil and debounce == false then debounce = true displayMsg(humanoid) debounce = false end end script.Parent.Touched:connect(onTouched)
ledger
#18286173Wednesday, December 23, 2009 6:15 PM GMT

This thread is 2 ye.ars old.
legocitymovie
#18286180Wednesday, December 23, 2009 6:15 PM GMT

i saw you use getPlayer i hred of it but dont know how to use it ive bin useing getchilden
legocitymovie
#18286267Wednesday, December 23, 2009 6:16 PM GMT

whow who bumped this
Arioka
#18286343Wednesday, December 23, 2009 6:18 PM GMT

@ledger Then why did you bump it?
ledger
#18287244Wednesday, December 23, 2009 6:32 PM GMT

I did to add to my 25 thread thingy.

    of     1