if not game:IsLoaded() then game.Loaded:Wait() end local MeisterUI local ok, err = pcall(function() MeisterUI = loadstring(game:HttpGet( "https://raw.githubusercontent.com/meister1889/meisterui/main/meisterui.lua" ))() end) if not ok then error("[HUB] Failed to load MeisterUI: " .. tostring(err)) end local Players = game:GetService("Players") local RunService = game:GetService("RunService") local UserInputService = game:GetService("UserInputService") local ReplicatedStorage = game:GetService("ReplicatedStorage") local Workspace = game:GetService("Workspace") local LocalPlayer = Players.LocalPlayer local Cfg = { WalkSpeed = 16, JumpPower = 50, InfiniteJump = false } local Window = MeisterUI:CreateWindow({ Name = "Guess My Number | Hub", HideKey = Enum.KeyCode.Insert, }) local MainTab = Window:CreateTab("Main") local PlayerTab = Window:CreateTab("Player") local MiscTab = Window:CreateTab("Misc") MainTab:CreateButton({ Name = "Free Reveal / Use Hint", Callback = function() pcall(function() local events = ReplicatedStorage:FindFirstChild("Events") and ReplicatedStorage.Events:FindFirstChild("Remote") if events then local hints = {"UseRevealNumber", "UseHint", "ShowHint", "ShowWhatOnPaper"} for _, h in pairs(hints) do if events:FindFirstChild(h) then events[h]:FireServer() end end end end) MeisterUI:Notify({Title = "Reveal Triggered", Content = "Bypassing reveal/hint events! Check your screen/chat.", Duration = 4}) end }) PlayerTab:CreateSlider({ Name = "Walk Speed", Range = {16, 250}, Increment = 1, CurrentValue = 16, Callback = function(v) Cfg.WalkSpeed = v local char = LocalPlayer.Character local hum = char and char:FindFirstChildOfClass("Humanoid") if hum then hum.WalkSpeed = v end end }) PlayerTab:CreateSlider({ Name = "Jump Power", Range = {50, 250}, Increment = 1, CurrentValue = 50, Callback = function(v) Cfg.JumpPower = v local char = LocalPlayer.Character local hum = char and char:FindFirstChildOfClass("Humanoid") if hum then hum.UseJumpPower = true hum.JumpPower = v end end }) PlayerTab:CreateToggle({ Name = "Infinite Jump", CurrentValue = false, Callback = function(v) Cfg.InfiniteJump = v end }) UserInputService.JumpRequest:Connect(function() if Cfg.InfiniteJump then local char = LocalPlayer.Character local hum = char and char:FindFirstChildOfClass("Humanoid") if hum then hum:ChangeState("Jumping") end end end) RunService.Stepped:Connect(function() local char = LocalPlayer.Character if not char then return end local hum = char:FindFirstChildOfClass("Humanoid") if hum then if Cfg.WalkSpeed ~= 16 then hum.WalkSpeed = Cfg.WalkSpeed end if Cfg.JumpPower ~= 50 then hum.JumpPower = Cfg.JumpPower end end end) MiscTab:CreateButton({ Name = "Enable Anti-AFK", Callback = function() local vu = game:GetService("VirtualUser") LocalPlayer.Idled:Connect(function() vu:Button2Down(Vector2.new(0, 0), workspace.CurrentCamera.CFrame) task.wait(1) vu:Button2Up(Vector2.new(0, 0), workspace.CurrentCamera.CFrame) end) MeisterUI:Notify({Title = "Anti-AFK", Content = "Anti-AFK is now active.", Duration = 3}) end }) MiscTab:CreateButton({ Name = "Unload Hub", Callback = function() Cfg.InfiniteJump = false local cg = game:GetService("CoreGui") local ui = cg:FindFirstChild("MeisterUI_Environment") if ui then ui:Destroy() end end }) MeisterUI:Notify({ Title = "Guess My Number Hub API", Content = "Script loaded with correct Remote paths! Press INSERT to toggle.", Duration = 5 })