None of my scripts are showing for other players inside the server, even though they are fired of :FireAllClients, via the server script.
All my remote events:

Local Script:
local RS = game:WaitForChild("ReplicatedStorage")
local plr = game.Players.LocalPlayer
local player = game:GetService("Players")
local canbeused = true
local streamaraiangrande = {"Looks like the host / co-host forgot to put a message here, haha! Lucky for you already ahead of you.","It appears that the host / co-host forgot a message here, woopsies!","It appears that the host / co-host forgot a message here, woopsies!"}
-- buttons function of UI lol xd xd xdr wararwarrar
if plr:HasAppearanceLoaded() then
script.Parent.LeftTopPanel.username.Text = plr.Name
script.Parent.LeftTopPanel.rank.Text = plr:GetRoleInGroup(8176838)
else
script.Parent.LeftTopPanel.username.Text = "Loading!"
script.Parent.LeftTopPanel.rank.Text = "It appears that we havent loaded yet!"
end
script.Parent.PanelMain.Gray_Frame.Session.MouseButton1Click:Connect(function()
script.Parent.PanelMain.Session_Frame.Visible = true
script.Parent.PanelMain.Session_Frame:TweenSize(UDim2.new(0, 370,0, 254),"Out","Bounce")
end)
-- host
script.Parent.PanelMain.Session_Frame.Gray_Frame.Host.MouseButton1Click:Connect(function()
game.ReplicatedStorage.T_Remotes.Session_Remotes.GetPlayer:FireServer(plr)
local moderator = plr
script.Parent.LeftTopPanel.Title.Host.Text = "Session Host: " .. string.lower(plr.Name)
script.Parent.PanelMain.Session_Frame.Gray_Frame.C_Host.Text = "Session Host: " .. string.lower(plr.Name)
script.Parent.LeftTopPanel.ImageLabel.Image = "https://www.roblox.com/headshot-thumbnail/image?userId=".. plr.UserId .."&width=420&height=420&format=png"
end)
-- cohost
script.Parent.PanelMain.Session_Frame.Gray_Frame.Co_Host.MouseButton1Click:Connect(function()
game.ReplicatedStorage.T_Remotes.Session_Remotes.GetPlayer:FireServer(plr)
local moderator = plr
script.Parent.LeftTopPanel.Title.Cohost.Text = "Session Co-Host: " .. string.lower(plr.Name)
script.Parent.PanelMain.Session_Frame.Gray_Frame.C_C.Text = "Session Co-Host: " .. string.lower(plr.Name)
end)
local status = true
local statusext = true
script.Parent.PanelMain.Session_Frame.Gray_Frame.Send_Announcement.MouseButton1Click:Connect(function()
if status == true then
game.ReplicatedStorage.T_Remotes.Session_Remotes.AnnouncementReceive:FireServer(script.Parent.PanelMain.Session_Frame.Gray_Frame.Announcement_Text.Text)
status = false
wait(15)
status = true
else
warn("arianagrande error")
end
end)
if statusext == true then
game.ReplicatedStorage.T_Remotes.Session_Remotes.AnnouncementReceive.aaasdada:FireServer(script.Parent.PanelMain.Session_Frame.Gray_Frame.Send_Announcement.Name)
statusext = false
wait(15)
statusext = true
else
print("warn?")
end
game.ReplicatedStorage.T_Remotes.Session_Remotes.AnnouncementReceive.ATransfer.OnClientEvent:Connect(function(moderator,text)
if moderator then
local plr = moderator
script.Parent.PanelMain.Announcement.Main.Text = text
script.Parent.PanelMain.Announcement.Title.Text = "ANNOUNCEMENT FROM " .. string.upper(plr.Name)
script.Parent.PanelMain.Announcement.sam.Image = "https://www.roblox.com/headshot-thumbnail/image?userId=".. plr.UserId .."&width=420&height=420&format=png"
if plr:GetRankInGroup(8176838) >= 235 then
print("ACcepted")
else
print("Not Accepted FAADADA")
end
script.Parent.PanelMain.Announcement:TweenSize(UDim2.new(1.881, 0,0.057, 0), "Out", "Quad", 0.001)
wait(0.001)
script.Parent.PanelMain.Announcement.Visible = true
script.Parent.PanelMain.Announcement:TweenSize(UDim2.new(1.881, 0,0.652, 0), "Out", "Quad", 0.5)
script.Parent.PanelMain.Announcement.ma:Play()
wait(0.5)
-- thinjing over lol
wait(7)
script.Parent.PanelMain.Announcement:TweenSize(UDim2.new(1.881, 0,0.057, 0), "Out", "Quad", 0.5)
wait(0.45)
script.Parent.PanelMain.Announcement.Visible = false
end
end)
-- security + opening of the UI
if plr:GetRankInGroup(8176838) >= 50 then
script.Parent.LeftTopPanel.Close_B.Visible = false
script.Parent.LeftTopPanel.Open_B.MouseButton1Click:Connect(function()
script.Parent.PanelMain.Visible = true
script.Parent.LeftTopPanel.Open_B.Visible = false
script.Parent.LeftTopPanel.Close_B.Visible = true
end)
script.Parent.LeftTopPanel.Close_B.MouseButton1Click:Connect(function()
script.Parent.PanelMain.Visible = false
script.Parent.LeftTopPanel.Open_B.Visible = true
script.Parent.LeftTopPanel.Close_B.Visible = false
end)
else
script.Parent.PanelMain.Visible = false
end
Server Script:
local ReplicatedStorage = game:GetService("ReplicatedStorage")
game.ReplicatedStorage.T_Remotes.Session_Remotes.Send.OnServerEvent:Connect(function(player)
game.ReplicatedStorage.T_Remotes.Session_Remotes.Receive:FireAllClients("Session Host: " .. player.Name)
end)
game.ReplicatedStorage.T_Remotes.Session_Remotes.Send.Send2.OnServerEvent:Connect(function(player)
game.ReplicatedStorage.T_Remotes.Session_Remotes.Receive.Receive2:FireAllClients("Session Co-Host: " .. player.Name)
end)
game.ReplicatedStorage.T_Remotes.Session_Remotes.AnnouncementSend.OnServerEvent:Connect(function(player)
game.ReplicatedStorage.T_Remotes.Session_Remotes.AnnouncementReceive:FireAllClients("text")
end)
game.ReplicatedStorage.T_Remotes.Session_Remotes.AnnouncementReceive.OnServerEvent:Connect(function(plr,text)
local FilteredMessage = game:GetService("Chat"):FilterStringForBroadcast(text,plr)
if plr:GetRankInGroup(8176838) >= 210 then
game.ReplicatedStorage.T_Remotes.Session_Remotes.AnnouncementReceive.ATransfer:FireAllClients(plr,FilteredMessage)
else
warn("This does not work with your rank." .. plr.Name)
end
end)
game.ReplicatedStorage.T_Remotes.Session_Remotes.GetPlayer.OnServerEvent:Connect(function(moderator,plr)
if plr:GetRankInGroup(8176838) >= 210 then
game.ReplicatedStorage.T_Remotes.Session_Remotes.GetPlayer.GP2:FireAllClients(plr)
else
warn("Your not high enough rank wise." .. plr.Name)
end
end)
All suggestions would be appreciated. B)
