I have a few problems and I know that i scripted it right because I have a Teleporter with the same Buff option. When He cast Hard-Style Buffs they go on himself too. Why is that? Also When They click L33T-Style it is suppose to kill them and it doesn't at all please help!Code:logcol(13) print("-- Super Buffer Script by Dimie at AMP-WoW is now Ready!--") print("-- Enjoy! --") logcol(7) local npcid = 999990 function On_Gossip_Talk(unit, event, player) unit:GossipCreateMenu(3554, player, 0) unit:GossipMenuAddItem(6, "|cFF9900Noob-Style Buffs!|r", 500, 0) unit:GossipMenuAddItem(6, "|cCC0000Hard-Style Buffs!|r", 501, 0) unit:GossipMenuAddItem(6, "|c99CC66L33T-Style Buffs!|r", 502, 0) unit:GossipMenuAddItem(1, "|c99CC66Scripted by Dimie|r", 800, 0) unit:GossipSendMenu(player) end function On_Gossip_Select (unit, event, player, id, intid, code) if (intid == 500) then unit:GossipCreateMenu(3543, player, 0) unit:FullCastSpellOnTarget(48100, player) unit:FullCastSpellOnTarget(48102, player) unit:FullCastSpellOnTarget(48104, player) unit:FullCastSpellOnTarget(58449, player) unit:FullCastSpellOnTarget(58451, player) unit:FullCastSpellOnTarget(58452, player) unit:GossipSendMenu(player) end if (intid == 501) then unit:GossipCreateMenu(3543, player, 0) unit:FullCastSpellOnTarget(8385, player) unit:FullCastSpellOnTarget(22888, player) unit:FullCastSpellOnTarget(20620, player) unit:FullCastSpellOnTarget(63283, player) unit:FullCastSpellOnTarget(48168, player) unit:FullCastSpellOnTarget(48073, player) unit:FullCastSpellOnTarget(38449, player) unit:FullCastSpellOnTarget(25898, player) unit:GossipSendMenu(player) end if (intid == 502) then unit:GossipCreateMenu(3543, player, 0) Unit:FullCastSpellOnTarget(5, player) Unit:SendChatMessage(12, "Next Time Don't Click Something you Can't handle!", 0) unit:GossipSendMenu(player) end end RegisterUnitGossipEvent(999990, 1, "On_Gossip_Talk") RegisterUnitGossipEvent(999990, 2, "On_Gossip_Select")![]()