-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLoader.luau
More file actions
34 lines (29 loc) · 1.37 KB
/
Loader.luau
File metadata and controls
34 lines (29 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
--[[
_ _ _ __ __ _____ _ _ ____ _ _ _____
| | | | | | \/ |_ _| \ | |/ __ \| | | |/ ____|
| | | | | | \ / | | | | \| | | | | | | | (___
| | | | | | |\/| | | | | . ` | | | | | | |\___ \
| |___| |__| | | | |_| |_| |\ | |__| | |__| |____) |
|______\____/|_| |_|_____|_| \_|\____/ \____/|_____/
If you are reading this... How did you get here? ANYWAY, no free scripts for you, greedy one.
]]--
local Players = game:GetService("Players")
local StarterGui = game:GetService("StarterGui")
local localPlayer = Players.LocalPlayer
local script_key = script_key
local placeLoaders = {
[122678592501168] = "c1af715fb5cef92216c02bab058d7050",
[126884695634066] = "bbec920857e855e25145e8e73278fdc0",
[87700573492940] = "72a2e5d817aaa0f7b969b103e44cd507",
[85896571713843] = "8549aaff307d7a4d9b391c61f2ddb67b",
[109983668079237] = "5874ca2d7fd4df580e27098c79dee679"
}
local loaderId = placeLoaders[game.PlaceId]
if loaderId then
loadstring(game:HttpGet("https://api.luarmor.net/files/v4/loaders/" .. loaderId .. ".lua"))()
else
pcall(function()
setclipboard("https://discord.gg/BAzAJ4sve6")
localPlayer:Kick("Unsupported game! If it's meant to be supported, or you want to suggest a game, join the Discord with the invite copied to your clipboard.")
end)
end