Question about GUI scripting

Hi !

I have a question that may seem silly like that.

Is it possible on roblox to create UI from Html/Css/Js a bit like on Five M ?

I haven’t seen any threads on this so I was wondering :smile:
( Sorry in advance if I was in the wrong category, I didn’t know where to place it. )

1 Like

No, it isn’t really possible to do that.

2 Likes

Not entirely true.

It is possible if you write your game in TypeScript, there’s a thing called Roact, which can be used in TypeScript using tsx files, so you’ll basically write your UI like that:

<frame Key={"FrameName"}
    Position={new UDim2(0,0,0,0)}
    Size={new UDim2(1,0,1,0)}>
    <textbutton Key={"TextButtonName"} {...} />
</frame>

Oh okay , thanks for your response :slight_smile:

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.