Noblox on a Website

Not really a question about the Roblox Platform but I want to use Noblox on a website. What website builders could I use to accomplish this?

1 Like

Noblox doesn’t work in browsers? You’d have to run a node.js app on your VPS. I doubt any “website builder” will support noblox. (How would it?)

1 Like

So how would I make the website?

Could you tell us what you actually want?

I want to be able to change a group rank from a website.

You would use the setrank function of noblox.js to change a user’s rank.

If you’re asking how to make a website, you’ll need to learn HTML/JS.

So I would have to make the website from scratch?

You could probably modify a website built using some website designer, however you’ll still need knowledge of HTML & JS to modify it to do what you want to do.

Any suggestions? Because if you know what Teverse or Terabyte Services used that would be great.

I’d recommend learning how to build websites in Node JS using express. Express is an extremely cool tool for making websites in Node and I highly recommend it for this type of project.

From there it’s as simple as integrating noblox APIs where you need it.

Like should I just code it from scratch? Like where do I start? What software do I use?

You can code it from scratch, or find something similar and modify it. I don’t understand what you mean by “what software” you should use. Use Node.JS + Express as Hexcede recommended, or use some other language.

Use a tutorial like How to Build Your First Node.js Website with Express and Pug to learn how to create websites using Node

Example you could use is this.

(Express Server)

Finding the code of my Vps, Ill edit this once found.

EDIT: I did something like this a few months back. Just trying to find it.

I’d recommend taking a look at express’s documentation and getting started page. If you get stuck Google is your friend. And if you’re having trouble with something in node js you can ask about it here or on stackoverflow.

Express lets you serve files and also custom content. You can write your website in html and put in some templates and have your Javascript code replace them!

Or you can use basic html and have your html interact with your node js server. Socket.io is an excellent tool and actually prefers you use express with it. Socket.io can show you how to get up and running with express (and actually now that I look at it offers some better beginner examples in the getting started section)

Update: Found it.

Here how i did it.

EXPRESS:

  app.get('/myform', async function(req, res){ 

    var myText = req.query.mytext; //mytext is the name of your input box
await client.bloxy.group.postOnWall(myText)
    res.sendStatus(200)
}); 

HTML PAGE

<!DOCTYPE HTML>
<html>
<head>
<title>Hub | Travoid</title>

</head>
<body>
  <form action="/myform" method="GET">
    <input type="text" name="mytext" required />
    <input type="submit" value="Submit" />
</form>
  </body>
</html>

EDIT: This was used for Posting onto groupwall. Just edit as you please.

if you did it that way, Anyone could abuse it since theres no security on it, But thats just as an Example. If any of this helped or need assistance, Just message me on Discord:

BillyH#8708

Like do I go to notepad? Or Glitch?

Wherever you want to host it? You can use glitch if you’d like to, or you can use your own computer.

To host it, Use some kind of Host like glitch, It looks like to me you can’t code or know any basic JS. I would suggest learning it before you start a project. (This is just an opinion i could be wrong).