I need some help with data for datastores

What should I do if I want to mark the user value of the datastore in Gui of the user?

  1. Get the value you want from the data store in a script inside of ServerScriptService
  2. Create a RemoteFunction called GetDataStoreValue inside of ReplicatedStorage
  3. Connect your RemoteFunction.OnServerInvoke to a function that returns the desired value
  4. Create a LocalScript inside your gui
  5. To get the requested value, use GetDataStoreValue:InvokeServer()

Can you write a code? because, i can’t understand.