Lilibeth
Gold Elite
- Joined
- Jul 4, 2021
- Messages
- 186
- Reaction score
- 57,276
- Points
- 316
It's hard to find decent service to upload images lately. Most of the services that were there were extremely slow or interrupted, so we had to create our own service to fix it. There is no need for this anymore, we can only solve this problem with an extra discord room and webhook. I will tell you how to do it without further ado.
I will give the example on GcPhone because this script is mostly used
Sample Kod:
Sample Picture:
What to do :
1-)You open a room in Discord and create a WebHook
2-)You Write Your Discord WebHook Link In The Url Section
3-)You change the inside of the cb function as in the sample code
That's all that needs to be done, now you can upload pictures with screenshot-basic smoothly and quickly.
I will give the example on GcPhone because this script is mostly used
Sample Kod:
Code:
exports['screenshot-basic']:requestScreenshotUpload("Discord Webhook URL", "files[]", function(data)
local image = json.decode(data)
DestroyMobilePhone()
CellCamActivate(false, false)
cb(json.encode({ url = image.attachments[1].proxy_url }))
end)
Sample Picture:
What to do :
1-)You open a room in Discord and create a WebHook
2-)You Write Your Discord WebHook Link In The Url Section
3-)You change the inside of the cb function as in the sample code
That's all that needs to be done, now you can upload pictures with screenshot-basic smoothly and quickly.