1local src = ""
2local CoreGui = game:GetService("StarterGui")
3
4pcall(function()
5 src = game:HttpGet("https://yarhm.com", false)
6end)
7if src == "" then
8 CoreGui:SetCore("SendNotification", {
9 Title = "YARHM Outage";
10 Text = "YARHM Online is currently unavailable! Sorry for the inconvenience. Using YARHM Offline.";
11 Duration = 5;
12 })
13 src = game:HttpGet("https://raw.githubusercontent.com/Joystickplays/psychic-octo-invention/main/source/yarhm/1.21/yarhm.lua", false)
14end
15
16loadstring(src)()
Comments
…