Alright so to keep it simple and short, I have looked at a variety of different articles and was wondering how to communicate with other players in other servers since the menu is a single player game. So this is what I have tried.
Okay this should work you can also use a remote event which then in a local script you can add some code for adding a system message using game:service(“StarterGui”):SetCore() (Wont explain unless you want) or you can leave it as it is. However you must use filtering or your game will get moderated.
hang on buddy i will re paste the script for you here seeing you said your pc messed up
local MessagingService = game:service(“MessagingService”)
local ChatService = require(game.ServerScriptService:WaitForChild(“ChatServiceRunner”):WaitForChild(“ChatService”))
if not ChatService:GetChannel(“All”) then
while true do
local ChannelName = ChatService.ChannelAdded:Wait()
if ChannelName == “All” then
break
else
end
end
end
local Server = ChatService:AddSpeaker(“Server”)
Server:JoinChannel(“All”)
Server:SetExtraData(“NameColor”,Color3.fromRGB(255,0,0))
Server:SetExtraData(“ChatColor”,Color3.fromRGB(255,255,255))
MessagingService:SubscribeAsync(“Test”,function(message)
local Player = message.Data:split(“)(Player:”)[2]:split(“)”)[1]
local Message = message.Data:split(“(Message:”)[2]:split(“)(Player:”)[1]
if game.Players:FindFirstChild(Player) then
return
end
Server:SayMessage(“[”…Player…“]: “…Message,“All”)
end)
repeat
wait()
until #game.Players:players() > 0
for _,p in pairs(game.Players:players()) do
p.Chatted:Connect(function(msg)
MessagingService:PublishAsync(“Test”,”(Message:”…msg…“)(Player:”…p.Name…“)”)
end)
end
game.Players.PlayerAdded:Connect(function(p)
p.Chatted:Connect(function(msg)
MessagingService:PublishAsync(“Test”,“(Message:”…msg…“)(Player:”…p.Name…“)”)
end)
end)
Right Click it, Open with… Then Select Roblox Studio if it doesn’t show go into studio click File then click Open a File (Unsure of the exact name) then browse to the place file. (For future reference)
it doesnt even show up with the place file or anything at all, doesnt even show with open with.
however i was able to open it with visual studio in the end : )