Answers for "roblox player chatter event"

0

roblox player chatter event

game.Players.PlayerAdded:Connect(function(player)
  player.Chatted:Connect(function(msg)
        -- do stuff with msg and player
		--example below
        print(player.Name.." said "..msg)
  end)
end)
Posted by: Guest on June-04-2021

Browse Popular Code Answers by Language