Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR LUA

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)
 
PREVIOUS NEXT
Tagged: #roblox #player #chatter #event
ADD COMMENT
Topic
Name
1+9 =