-
Undertale Stickers Vol. 1: https://signal.art/addstickers/#pack_id=a5706e11e9e626ab798bc661c9604f93&pack_key=92a82baedac6e9a1fcde4a4d4a56105e5f3d1eaba945a7d02b39b6f9d68c6998
-
Undertale Stickers Vol. 2: https://signal.art/addstickers/#pack_id=074cecac181772b60130162aa3981ada&pack_key=a6e0e813baa2ed616dec962634826804ac5da6d3a5c8c3fdbca73df89d8eb92a
-
Undertale Stickers Vol. 3: https://signal.art/addstickers/#pack_id=ad0b823c236a108b4ebc2c4f858d7ec1&pack_key=4d7404644cf7699710c1901ded7e552e65086cb0a357801d26c4fa5ecacaea20
-
Deltarune Stickers Vol. 1: https://signal.art/addstickers/#pack_id=017c1d161dbe2652f772635dbf10147b&pack_key=a52e96a054a821a955db5d5e4b231e6aec2ea9f18e7937cc0b41e8a02f774bd3
O download desse arquivo customava demorar horas e horas, hoje em dia parece ser melhor, mesmo assim, criei esse torrent pra ajudar quem potencialmente precisar no futuro.
O arquivo .torrent pode ser encontrado aqui.
É importante verificar se esta é a versão certa pro seu dispositivo! O link de download deve ser igual a: https://blobmarketingsemp.blob.core.windows.net/website/drivers/8907XX-SW-MAIN-XX6500SS5300S615-VS.367_USB.zip.
You might have bought Bluetooth earphones, and while they might work on your modern phone, they seem to not work properly on your TV... or older phone... or any other Bluetooth transmitting device!
I bought Redmi Airdots 1 year ago, and while it would work just fine on my phone, it would have clipping with my TV, so I wasn't able to watch VSauce on it.
A while after, I would notice not-so-modern phones would have the same issue.
--[=[ | |
A function which makes it so that the current thread is interrupted, and causes an error when on an attempt to resume it. | |
@yields | |
]=] | |
local function exit() | |
task.defer( | |
coroutine.close, | |
coroutine.running() | |
) |
export type ScriptSignal = { | |
_active: boolean, | |
_head: ScriptConnection?, | |
IsActive: (ScriptSignal) -> boolean, | |
Connect: ( | |
ScriptSignal, | |
handler: (...any) -> () | |
) -> ScriptConnection, | |
Wait: (ScriptSignal) -> (...any), |
--[[ | |
A custom BindToClose implementation which fixes these issues: | |
* Has a :Disconnect method | |
* Listeners run in a different order: | |
Which is: First connected -> Last connected | |
This order fixes a lot of hidden issues, particularly with requiring. | |
]] |
The Github doesn't provide country code for Brazil (+55). To add this option, just run the code below in your console. The option Brazil +55
will be the first on the list, already selected:
🇧🇷 [pt-BR]
local Yielder = {} | |
Yielder.__index = Yielder | |
function Yielder.new(): Class | |
return setmetatable({ | |
_thread = nil | |
}, Yielder) | |
end | |
function Yielder:Yield(...): (...any) |
local StarterGui = game:GetService("StarterGui") | |
local BackpackUtil = {} | |
local IsBackpackHidden = false | |
local HiddenCounter = 0 | |
local function ChangeBackpackVisibility( | |
isHidden: boolean | |
) | |
while true do |
local StarterGui = game:GetService("StarterGui") | |
local SetCore = {} | |
function SetCore:ChatActive(active: boolean) | |
StarterGui:SetCore("ChatActive", active) | |
end | |
function SetCore:BadgesNotificationsActive(active: boolean) | |
StarterGui:SetCore("BadgesNotificationsActive", active) | |
end |