Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

msg = object, expected string?

Asked by 8 years ago
Edited 8 years ago
1--Server Script
2--\\ Services
3local ReplicatedStorage = game:GetService'ReplicatedStorage'
4--\\ Nicknames
5local Event = ReplicatedStorage.ChatEvent
6--\\ Main Code
7Event.OnServerEvent:connect(function(ply,msg)
8    Event:FireAllClients(ply,msg)
9end)
01--Client Script
02--\\ Services
03local ReplicatedStorage = game:GetService'ReplicatedStorage'
04--\\Nicknames and Tables
05local ply = script.Parent.Parent or game.Players.LocalPlayer
06local Event = ReplicatedStorage.ChatEvent
07local Admins = {'Vingam_Securis', 'Player1'}
08--\\FireServerFunction
09ply.Chatted:connect(function(msg)
10    if msg ~= '' then
11        Event:FireServer(ply,msg)
12    elseif msg == '' then
13        return
14    end
15end)
View all 30 lines...

Players.Player1.PlayerScripts.ChattedScript:24: bad argument #3 to 'Text' (string expected, got Object)

1 answer

Log in to vote
1
Answered by 8 years ago

on line 11 of the Local Script, don't send the player.

You don't need to send the player manually because it will do it for you.

Local Script,

01--Client Script
02--\\ Services
03local ReplicatedStorage = game:GetService'ReplicatedStorage'
04--\\Nicknames and Tables
05local ply = script.Parent.Parent or game.Players.LocalPlayer
06local Event = ReplicatedStorage.ChatEvent
07local Admins = {'Vingam_Securis', 'Player1'}
08--\\FireServerFunction
09ply.Chatted:connect(function(msg)
10    if msg ~= '' then
11        Event:FireServer(msg)-- Removed Player
12    elseif msg == '' then
13        return
14    end
15end)
View all 30 lines...

Good Luck!

Ad

Answer this question