Log in

View Full Version : Target skull



jorgeriva1
09-15-2016, 09:27 AM
Hi,

I'm trying to make a script to perform an action if my target has a skull. Here is my script, can someone let me know whats wrong with it please.


Module.New("Skull", function()
if Creature:isTarget() == true and Creature:isInnocent() == false then
Self.Say('Hi')
wait(5000)
end
end)

Cheers

jorgeriva1
09-15-2016, 12:04 PM
Never mind, figured it out.