local Button = CreateFrame("Button", "MyButton", UIParent, "UIPanelButtonTemplate") Button:SetWidth(150) Button:SetHeight(25) Button:SetPoint("TOP") Button:SetText("Dance") Button:RegisterForClicks("AnyUp") Button:SetScript("OnClick", function() DoEmote("dance", UnitName("target")) end )