--[[ ^^ Made by bigboytimme ^^ ]]-- local GamepassesModule = require(game.ReplicatedStorage.Modules:WaitForChild("Gamepasses")) local player = game.Players.LocalPlayer local WT = 5 local function now() return os.date("[%H:%M:%S]") end function repeatn() print("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n") end repeat repeatn() WT = WT - 1 until WT <= 0 local exeidentify = getidentity() if exeidentify == 2 or exeidentify == 3 then print("Your executor might be too weak for this script, will continue though.") end for name, data in pairs(GamepassesModule.Gamepasseses) do if typeof(data.Function) == "function" then local success, err = pcall(function() data.Function(player) end) if success then print(now(), "✅ Works:", name) else warn(now(), "⚠️ Fails:", name, "->", err) end end end repeatn()