11 lines
301 B
Plaintext
11 lines
301 B
Plaintext
|
|
|
|
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 ) |