Advertisement
chen399d

工具組

Oct 4th, 2024 (edited)
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.90 KB | Source Code | 0 0
  1. local library = loadstring(game:HttpGet("https://pastebin.com/raw/d40xPN0c", true))();
  2. local AntiAFK = game:GetService("VirtualUser");
  3. game.Players.LocalPlayer.Idled:Connect(function()
  4.     AntiAFK:CaptureController();
  5.     AntiAFK:ClickButton2(Vector2.new());
  6.     wait(2);
  7.     print("AFK:AFK Bypass");
  8. end);
  9. local window = library:AddWindow("腳本製作..工具", {main_color=Color3.fromRGB(41, 74, 122),min_size=Vector2.new(250, 270),can_resize=false});
  10. local features = window:AddTab("自述");
  11. features:Show();
  12. features:AddLabel("作者:澤澤");
  13. features:AddLabel("介面:Elerium v2");
  14. features:AddLabel("最後更新時間:2024/12/17");
  15. local timeLabel = features:AddLabel("當前時間:00/00/00 00:00:00");
  16. local timezoneLabel = features:AddLabel("當前時區:UTC+00:00");
  17. local function getFormattedTime()
  18.     return os.date("%Y/%m/%d %H:%M:%S");
  19. end
  20. local function getLocalTimezone()
  21.     local offset = os.date("%z");
  22.     return string.format("UTC%s", offset:sub(1, 3) .. ":" .. offset:sub(4, 5));
  23. end
  24. local function updateLabel()
  25.     timeLabel.Text = "當前時間:" .. getFormattedTime();
  26.     timezoneLabel.Text = "當前時區:" .. getLocalTimezone();
  27. end
  28. spawn(function()
  29.     while true do
  30.         updateLabel();
  31.         wait(1);
  32.     end
  33. end);
  34. local features = window:AddTab("工具組");
  35. features:AddLabel("遠端");
  36. features:AddButton("RSPY 遠湍檢測", function()
  37.     loadstring(game:HttpGet("https://raw.githubusercontent.com/exxtremestuffs/SimpleSpySource/master/SimpleSpy.lua"))();
  38. end);
  39. features:AddButton("RSPY 進階", function()
  40.     local owner = "memejames";
  41.     local branch = "FHubModded";
  42.     local function webImport(file)
  43.         return loadstring(game:HttpGetAsync(("https://raw.githubusercontent.com/%s/Mod-Hydroxide/%s/%s.lua"):format(owner, branch, file)), file .. ".lua")();
  44.     end
  45.     webImport("init");
  46.     webImport("ui/main");
  47. end);
  48. features:AddLabel("內部文件管理DEX");
  49. features:AddButton("DEX 基本", function()
  50.     loadstring(game:HttpGet("https://raw.githubusercontent.com/infyiff/backup/main/dex.lua"))();
  51. end);
  52. features:AddButton("DEX 進階", function()
  53.     loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Keyless-mobile-dex-17888"))();
  54. end);
  55. local features = window:AddTab("工具組二");
  56. features:AddLabel("指令");
  57. features:AddButton("infinite_yield", function()
  58.     loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source"))();
  59. end);
  60. features:AddLabel("快速指令");
  61. features:AddButton("重新進入伺服器", function()
  62.     local TeleportService = game:GetService("TeleportService");
  63.     local Players = game:GetService("Players");
  64.     local jobId = game.JobId;
  65.     local placeId = game.PlaceId;
  66.     local localPlayer = Players.LocalPlayer;
  67.     local function rejoinServer()
  68.         if (jobId ~= "") then
  69.             TeleportService:TeleportToPlaceInstance(placeId, jobId, localPlayer);
  70.         else
  71.             warn("無法獲取伺服器 ID!");
  72.         end
  73.     end
  74.     rejoinServer();
  75. end);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement