PDA

View Full Version : Using party hat scripts need



Czougista
11-22-2015, 03:12 PM
Hi! I need script to use party hat in head. Interval - 3 seconds. Thanks! :)

Aristeus
11-22-2015, 06:49 PM
local PartyHatID = 6578 -- Item ID of the PartyHat

Module.New('Use Party Hat', function(module)
if (Self.Head().id == PartyHatID) then
Self.UseItemFromEquipment("head")
module:Delay(3000)
end
end)

Czougista
11-22-2015, 09:09 PM
Thanks you bro. :)