
Attack on titan revolution
56 Views
3d atrás
Descrição
Nenhuma descrição fornecida.
Como Executar?
Script
1-- Ensure the game is loaded
2if game:IsLoaded() then
3 print("Game is already loaded, executing script.")
4else
5 game.Loaded:Wait()
6end
7
8local GameP = game.PlaceId
9
10-- Function to send notifications
11local function sendNotification(title, text)
12 game:GetService("StarterGui"):SetCore("SendNotification", {
13 Title = title,
14 Text = text,
15 Icon = "rbxassetid://13264701341"
16 })
17end
18
19-- Initial notifications
20sendNotification("Notification", "Checking")
21wait(0.1)
22sendNotification("Notification", "Check Place Id..")
23wait(0.1)
24
25-- Game specific logic
26local url
27
28if game.PlaceId == 12137249458 then -- Gun Grounds
29 sendNotification("Notification", "Gun Grounds [" .. GameP .. "]")
30 url = "https://raw.githubusercontent.com/zerunquist/TekkitAotr/main/gungroundsffa"
31
32elseif game.PlaceId == 5094651510 or game.PlaceId == 4855457388 then
33 sendNotification("Notification", "Demon Fall [" .. GameP .. "]")
34 url = "https://raw.githubusercontent.com/JD-04/Tekkit/main/Demon%20Fall"
35
36elseif game.PlaceId == 13772394625 or game.PlaceId == 17757592456 or game.PlaceId == 16456370330 or game.PlaceId == 16281300371 or game.PlaceId == 15144787112 or game.PlaceId == 16581648071 or game.PlaceId == 15234596844 or game.PlaceId == 14915220621 or game.PlaceId == 15264892126 or game.PlaceId == 14732610803 then -- BladeBall
37 sendNotification("Notification", "Blade Ball [" .. GameP .. "]")
38 url = "https://raw.githubusercontent.com/JD-04/Tekkit/main/BladeBall"
39
40elseif game.PlaceId == 2753915549 or game.PlaceId == 4442272183 or game.PlaceId == 7449423635 then
41 sendNotification("Notification", "Blox Fruits [" .. GameP .. "]")
42 url = "https://raw.githubusercontent.com/JD-04/Tekkit/refs/heads/main/Blox%20obf.txt"
43
44elseif game.PlaceId == 286090429 then
45 sendNotification("Notification", "Arsenal [" .. GameP .. "]")
46 url = "https://raw.githubusercontent.com/JD-04/Tekkit/refs/heads/main/Arsenal"
47-- Add other games here as needed
48
49else
50 sendNotification("Notification", "Loading Aot:R Hub [" .. GameP .. "]")
51 url = "https://api.luarmor.net/files/v3/loaders/705e7fe7aa288f0fe86900cedb1119b1.lua"
52end
53
54-- Load and execute the script from the URL
55if url then
56 local success, response = pcall(function()
57 return game:HttpGet(url)
58 end)
59
60 if success then
61 loadstring(response)()
62 else
63 sendNotification("Error", "Failed to load script from URL: " .. url)
64 end
65else
66 sendNotification("Error", "No URL found for the current game.") -- h
67end