Hi there, I’m FadedAnimator. I’m a bit new into this developing stuff and I’ve been strugling for so long trying to find a way of changing guis. Well I think it’s related to Remote events, and I’m not pretty good at it… Can you guys help me with this please?
Changing GUIs in what way? if you simply want to change what frames are visible, then you can just change the .Visible property
You would use a RemoteEvent, and run a FireClient function like this:
local Remote = game.ReplicatedStorage.Remote
Remote:FireClient(Player,"Text") -- the text is just whatever you want it to display
on the client side
local Remote = game.ReplicatedStorage.Remote
Remote.OnClientEvent:Connect(function(message)
-- make frame visible with text
end)
1 Like
Thank you guys so much, I’m very grateful for the help