How could I create a UI Page where a player submits an image (roblox decal)

  1. What do you want to achieve?
    I want to create a page where a player can submit a roblox id onto this script

Image = script.Parent
local Images = {8456882009, 8508980527, 8494327076, 8246586305, 8466128832, 7058203410,
1071514685, 474498947, 4126625912, 7591149471, 2000663772}
Image.Image = “rbxassetid://” … tostring(Images[math.random(1,#Images)])

  1. What is the issue?
    I dont know how to make a player submit a id (THIS MUST SAVE FOR ANY OTHER PLAYER TO SEE)
  2. What solutions have you tried so far?
    Searching the devforum, Looking at youtube, looking at different websites but no avail

(I dont know if this inculdes data stores)

Can you please explain what you’re trying to do?

So basically, A player scrolls through a select of images, Which another player can submit an image for the other player to see

e.g.

scrolling through a phone, lets say twitter, And you scroll through images that was posted by another person, but you see it too.

And I want to know how to do that, Another person posts something, you see it.

The player would have to input an ID on the client, which would then be sent to the server. The server would then send that image to all the clients.

Can you explain how I’d go about doing that for me. Thanks.

When the player inputs a code, fire a RemoteEvent to the server. The server would then do any necessary checks, then the server would fire a RemoteEvent to all the clients with that id and any other data.