Tools no longer fire Activated

The Activated event no longer fires under any circumstances. This applies to all games since earlier today. It doesn’t work in games, test solo, or in test servers.

The repro is simple, you can even use the code provided by the wiki article on .Activated.

local tool = Instance.new("Tool")
tool.Parent = game.Players.Arch_Mage.Backpack
 
function onActivation()
    print("Tool activated")
end
 
tool.Activated:connect(onActivation)

Nothing shows up in the console, not even an error.

Hopefully this can be looked into and fixed quickly, as it is preventing tool usage in many games.

8 Likes

Can confirm this in my game (https://www.roblox.com/games/662417684/LUCKY-BLOCKS-Lucky-Block-Battlegrounds#!/about)

It has drastically reduced my player count as my game is entirely based around gear, and now none of them are working.

Average visit times our down, and my players are getting mad, hoping for a quick fix!

1 Like

This was caused by an experimental change earlier today, it should be fixed now. Sorry for the disruption!

12 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.