This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import axios from "axios"; | |
import fs from "node:fs"; | |
async function textToimage(prompt) { | |
const { data } = await axios.get(`https://image.pollinations.ai/prompt/${prompt}2C%20photorealistic?width=768&height=768&seed=177984&nologo=true`, { responseType: "arraybuffer" }) | |
/** | |
* The returns is arraybuffer type not url image. | |
*/ | |
return data | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import axios from "axios"; | |
async function muslimai(query) { | |
try { | |
const { data } = await axios.get(`https://bf31jhdm60.execute-api.eu-west-2.amazonaws.com/dev/ask/${query}?question=${query}`, { | |
headers: { | |
'referer': 'https://www.askmuslim.app/', | |
'user-agent': 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Mobile Safari/537.36' | |
} | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import axios from "axios"; | |
async function takeScreenshot(web, format) { | |
const formats = ["png", "jpg"]; | |
if (!formats.includes(format)) { | |
return { error: true, message: "Valid format: png, jpg" }; | |
} | |
let payload = { | |
browserHeight: 720, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- FlyMobile.lua (COMPLETE - With GUI Toggle) | |
-- StarterPlayer > StarterPlayerScripts | |
local Players = game:GetService("Players") | |
local RunService = game:GetService("RunService") | |
local player = Players.LocalPlayer | |
local camera = workspace.CurrentCamera | |
-- Configurable values | |
local BASE_SPEED = 70 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- PlayerESP.lua (Character Highlight ESP - See Through Walls) | |
-- StarterPlayer > StarterPlayerScripts | |
local Players = game:GetService("Players") | |
local RunService = game:GetService("RunService") | |
local player = Players.LocalPlayer | |
local camera = workspace.CurrentCamera | |
-- Settings | |
local ESP_ENABLED = false |