Skip to content

Instantly share code, notes, and snippets.

View Julli4n's full-sized avatar
🐢
I may be slow to respond.

Julli4n Julli4n

🐢
I may be slow to respond.
View GitHub Profile
@Julli4n
Julli4n / autoDecline.js
Last active November 19, 2023 08:24
Roblox auto decline call
const userIdsThatCanCall = [];
const client = Roblox.RealTime.Factory.GetClient();
client.Subscribe("CallNotification", callDetail => {
if (callDetail.Type === "NewCall" &&
(callDetail.CallerId !== Roblox.CurrentUser.userId && !userIdsThatCanCall.includes(callDetail.CallerId))
) {
CoreUtilities.httpService.post({
url: "https://apis.roblox.com/call/v1/decline-call",
withCredentials: true
@Julli4n
Julli4n / ok.js
Last active June 7, 2024 11:51
ROBLOX
/*
!! The feature that uses this endpoint has recently started rolling out to users.
!! See `App > Avatar > Profile Picture Editor`
!!
!! You may continue using this script, the only advantage is being able to
!! customize FullBody and Closeup independently.
*/