Well like I said, I can’t get the frame appear even though I looped through all of the players and created a pathway to the playerGui
-- This lines of code are in serverscriptservice
for _, player in pairs(game.Players:GetChildren()) do
player.PlayerGui.VotingSystem.Frame.Visible = true
end
-- a local script, opening the voting system. Try putting this in the frame.
local event = -- path to remote event
event.OnClientEvent:Connect(function()
script.Parent.Visible = true
end)
-- The Server Script where you're making the frame visible for everyone
local event = -- path to remote event
event:FireAllClients()