randomInt()
Apps all run in a secure environment so don't have access to Math.random()
.
This is a utility to give you similar functionality.
import React from "react";
import { randomInt } from "hyperfy";
export default function App() {
const randomNum = randomInt(0, 100);
console.log(randomNum);
return <app />;
}