Ok so, if you don't understand what a DOM element is then i'll explain:
a DOM element is a unique ID used within HTML (usually with .js files) to save values which need to be calculated (such as player value, what i'm trying to get from a site called rolimons) a DOM value is usually represented like id="cool_name", i was wondering if anybody knew how to get the properties / elements of this value (you can get it from the google chrome console) - so i was wondering if there was a lua conversion for this?
Edit: I found this devforum post but can't test out the plugin right now, maybe this plugin could help? POST
Something like this (Probably Doesn't work) :
local HttpService = game:GetService("HttpService") local WebRequest = HttpService:GetAsync("https://www.rolimons.com/player/1689463945") local FindDOM = string.find(WebRequest, "$('#player_value')" print(FindDOM.innerText)
this thread is about getting a HTML DOM (Document Object Model) value through lua, so it's about lua. -- > for a ROBLOX game