-- name: Everything Has A Popup -- description: Made By BlitherDev. Everytime you do an action,It appears as an popup to everyone! local lastAction = {} function action_popup(m) local i = m.playerIndex local np = gNetworkPlayers[i] if lastAction[i] == m.action then return end lastAction[i] = m.action local msg = nil if m.action == ACT_JUMP or m.action == ACT_DOUBLE_JUMP or m.action == ACT_TRIPLE_JUMP then msg = "Jumped!" elseif m.action == ACT_WALKING or m.action == ACT_RUNNING then msg = "Started Walking!" elseif m.action == ACT_GROUND_POUND then msg = "Ground Pounded!" elseif m.action == ACT_PUNCHING then msg = "Punched!" elseif m.action == ACT_DIVE then msg = "Dived!" elseif m.action == ACT_SIDE_FLIP then msg = "Side Flipped!" elseif m.action == ACT_WALL_KICK_AIR then msg = "Wall Kicked!" elseif m.action == ACT_CROUCHING then msg = "Crouched!" elseif m.action == ACT_READING_NPC_DIALOG or m.action == ACT_READING_SIGN then msg = "Interacted with an NPC!" end if msg then djui_popup_create_global(np.name .. " " .. msg, 2) end end hook_event(HOOK_MARIO_UPDATE, action_popup)