Advertisement
Marlingaming

Button API

Sep 15th, 2021
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. --this program handles the creation and running of buttons
  2.  
  3. local tArg = {..}
  4.  
  5. Class = {
  6. new = function(self)
  7. local new = {}
  8. setmetatable(new, {__index = self })
  9. return new
  10. end,
  11. setCord = function(self, Shape)
  12. self.Shape = {..Shape..}
  13. end,
  14. SetResult = function(self, result)
  15. self.result = result
  16. end
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement