-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathautofarm-loader
More file actions
59 lines (52 loc) · 1.82 KB
/
Copy pathautofarm-loader
File metadata and controls
59 lines (52 loc) · 1.82 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
local TeleportService = game:GetService("TeleportService")
local player = game:GetService("Players").LocalPlayer
local placeScripts = {
-- 99 Nights In The Forest (Lobby)
[79546208627805] = function()
task.spawn(function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/caomod2077/Script/refs/heads/main/FNDayFarm.lua"))();
end)
end,
-- 99 Nights In The Forest (Game)
[126509999114328] = function()
task.spawn(function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/caomod2077/Script/refs/heads/main/FNDayFarm.lua"))();
end)
end,
-- 99 Nights In The Forest (Update Party)
[126371807511901] = function()
task.spawn(function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/caomod2077/Script/refs/heads/main/FNDayFarm.lua"))();
end)
end,
-- Dead Rails (Lobby)
[116495829188952] = function()
task.spawn(function()
task.wait(3)
loadstring(game:HttpGet("https://raw.githubusercontent.com/afkar-gg/sc/refs/heads/main/auto-bond"))()
end)
end,
-- Dead Rails (Game)
[70876832253163] = function()
task.spawn(function()
task.wait(5)
loadstring(game:HttpGet("https://raw.githubusercontent.com/afkar-gg/sc/refs/heads/main/auto-bond"))()
end)
end,
-- Runaways lobby
[118418618261207] = function()
task.spawn(function()
loadstring(game:HttpGet("https://afkar.lol/script/larijirlobby"))()
end)
end,
-- Runaways game
[117311404196294] = function()
task.spawn(function()
loadstring(game:HttpGet("https://afkar.lol/script/larijirgame"))()
end)
end
}
local runScript = placeScripts[game.PlaceId]
if runScript then
runScript()
end