Thread: self.bugged
View Single Post
11-05-13, 12:54 PM   #4
skarie
An Aku'mai Servant
AddOn Author - Click to view addons
Join Date: Jun 2011
Posts: 37
Thank you Haste and Zork. You guys are both right. Indeed something else was the parent of Health.

Old codes
Code:
 local Health = CreateFrame("StatusBar",nil,Hbg)
New codes <---which fixes the problem
Code:
local Health = CreateFrame("StatusBar",nil, self)
Thank you guys.
  Reply With Quote