|
| 11 Nov 2014 06:48 PM |
| How do I add custom emotes to my game? |
|
|
| Report Abuse |
|
|
|
| 11 Nov 2014 07:09 PM |
you can either do it on a key press or just when you chat something then it plays an animation |
|
|
| Report Abuse |
|
|
|
| 11 Nov 2014 07:13 PM |
| But how do I add custom emotes to my game? |
|
|
| Report Abuse |
|
|
Biost
|
  |
| Joined: 25 Sep 2014 |
| Total Posts: 3922 |
|
|
| 11 Nov 2014 07:25 PM |
Add animations to the animations folder, I forget where that is though.
And do /e "Animationnamehere" |
|
|
| Report Abuse |
|
|
| |
|
|
| 11 Nov 2014 07:42 PM |
local curr = {}; game.Players.localPlayer:getMouse().KeyDown:connect(function(k) rawset(curr,#curr+1,k); local text = table.concat(curr,''); if(text=='/e dostuff') then _(); end; end);
function _()
end; |
|
|
| Report Abuse |
|
|
| |
|
|
| 11 Nov 2014 07:56 PM |
in the function '_', run the animation
local curr = {}; game.Players.localPlayer:getMouse().KeyDown:connect(function(k) rawset(curr,#curr+1,k); local text = table.concat(curr,''); if(text=='/e dostuff') then curr = {}; _(); end; end);
function _()
end; |
|
|
| Report Abuse |
|
|
| |
|
|
| 11 Nov 2014 10:14 PM |
| If you can't understand how to script, don't try to add custom emotes. |
|
|
| Report Abuse |
|
|