Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local library = loadstring(game:HttpGet("https://pastebin.com/raw/d40xPN0c", true))();
- local AntiAFK = game:GetService("VirtualUser");
- game.Players.LocalPlayer.Idled:Connect(function()
- AntiAFK:CaptureController();
- AntiAFK:ClickButton2(Vector2.new());
- wait(2);
- print("AFK:AFK Bypass");
- end);
- local window = library:AddWindow("腳本製作..工具", {main_color=Color3.fromRGB(41, 74, 122),min_size=Vector2.new(250, 270),can_resize=false});
- local features = window:AddTab("自述");
- features:Show();
- features:AddLabel("作者:澤澤");
- features:AddLabel("介面:Elerium v2");
- features:AddLabel("最後更新時間:2024/12/17");
- local timeLabel = features:AddLabel("當前時間:00/00/00 00:00:00");
- local timezoneLabel = features:AddLabel("當前時區:UTC+00:00");
- local function getFormattedTime()
- return os.date("%Y/%m/%d %H:%M:%S");
- end
- local function getLocalTimezone()
- local offset = os.date("%z");
- return string.format("UTC%s", offset:sub(1, 3) .. ":" .. offset:sub(4, 5));
- end
- local function updateLabel()
- timeLabel.Text = "當前時間:" .. getFormattedTime();
- timezoneLabel.Text = "當前時區:" .. getLocalTimezone();
- end
- spawn(function()
- while true do
- updateLabel();
- wait(1);
- end
- end);
- local features = window:AddTab("工具組");
- features:AddLabel("遠端");
- features:AddButton("RSPY 遠湍檢測", function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/exxtremestuffs/SimpleSpySource/master/SimpleSpy.lua"))();
- end);
- features:AddButton("RSPY 進階", function()
- local owner = "memejames";
- local branch = "FHubModded";
- local function webImport(file)
- return loadstring(game:HttpGetAsync(("https://raw.githubusercontent.com/%s/Mod-Hydroxide/%s/%s.lua"):format(owner, branch, file)), file .. ".lua")();
- end
- webImport("init");
- webImport("ui/main");
- end);
- features:AddLabel("內部文件管理DEX");
- features:AddButton("DEX 基本", function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/infyiff/backup/main/dex.lua"))();
- end);
- features:AddButton("DEX 進階", function()
- loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Keyless-mobile-dex-17888"))();
- end);
- local features = window:AddTab("工具組二");
- features:AddLabel("指令");
- features:AddButton("infinite_yield", function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source"))();
- end);
- features:AddLabel("快速指令");
- features:AddButton("重新進入伺服器", function()
- local TeleportService = game:GetService("TeleportService");
- local Players = game:GetService("Players");
- local jobId = game.JobId;
- local placeId = game.PlaceId;
- local localPlayer = Players.LocalPlayer;
- local function rejoinServer()
- if (jobId ~= "") then
- TeleportService:TeleportToPlaceInstance(placeId, jobId, localPlayer);
- else
- warn("無法獲取伺服器 ID!");
- end
- end
- rejoinServer();
- end);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement