Here is a little something that may help you if you want to make a custom style of something. By the way, I plan on releasing my entire LUA folder since I don't care about Bully anymore.
F_Kick = function()
if IsButtonPressed(BUTTON, 0) then
PedSetAITree(gPlayer, "/Global/AI_Mascot_4_05", "Act/AI_Mascot_4_05.act")
PedSetActionNode(gPlayer, "/Global/J_Mascot/Offense/Short", "act/anim/J_Mascot.act")
while PedIsPlaying(gPlayer, "/Global/J_Mascot/Offense/Short", "act/anim/J_Mascot.act") do
Wait(0)
end
PedSetAITree(gPlayer, "/Global/PlayerAI", "Act/AI/PlayerAI.act")
end
end
Simply copy and paste it into your code.