Working on attempting to make it so when you hold a tool all bubble chats show up on it. It works until I pick it up.
local cservice = game:GetService(“Chat”)
local Part = script.Parent
local tool = script.Parent.Parent
game.Players.PlayerAdded:Connect(function(Player)
Player.Chatted:Connect(function(Chat)
cservice:Chat(Part, Chat, Enum.ChatColor.White)
end)
end)
It also sends my messages twice when holding it. Odd
If that’s the case then move the part to workspace when equipped and then move it somewhere where it’s physics is disabled like replicated storage when unequipped. then when equipped move it to workspace and position it to the handle via CFrame and weld them together
The main issue im having with that is how I will accomplish multiple Radios for if there are more players ingame. I attempted something similar to what you suggested and the part for chatting would keep getting swapped and removed inbetween the 2 tools and not working