-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathmainscript.lua
More file actions
16 lines (16 loc) · 1.1 KB
/
mainscript.lua
File metadata and controls
16 lines (16 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
repeat task.wait() until game:IsLoaded()
local queueteleport = syn and syn.queue_on_teleport or queue_on_teleport or fluxus and fluxus.queue_on_teleport
game:GetService("Players").LocalPlayer.OnTeleport:Connect(function(State)
if State == Enum.TeleportState.Started then
queueteleport("loadstring(game:HttpGet('https://raw.githubusercontent.com/8pmX8/rektsky4roblox/main/mainscript.lua'))()")
end
end)
if game.PlaceId == 6872274481 or game.PlaceId == 8560631822 or game.PlaceId == 8444591321 then
loadstring(game:HttpGet("https://raw.githubusercontent.com/8pmX8/rektsky4roblox/main/scripts/bedwars.lua"))()
elseif game:HttpGet("https://raw.githubusercontent.com/8pmX8/rektsky4roblox/main/scripts/"..game.PlaceId..".lua") then
loadstring(game:HttpGet("https://raw.githubusercontent.com/8pmX8/rektsky4roblox/main/scripts/"..game.PlaceId..".lua"))()
elseif isfile("rektsky/scripts/"..game.PlaceId..".lua") then
loadstring(readfile("rektsky/scripts/"..game.PlaceId..".lua"))()
else
loadstring(game:HttpGet("https://raw.githubusercontent.com/8pmX8/rektsky4roblox/main/scripts/AnyGame.lua"))()
end