local Library = loadstring(game:HttpGet("https://pastebin.com/raw/CdRR4pAF"))() local window = Library:CreateWindow("Dinas Hub Op Menu") local mainTab = window:AddTab("Main", "🏠") local utilitiesTab = window:AddTab("Other", "🔧") local communityTab = window:AddTab("Community", "👥") local settingsTab = window:AddTab("Settings", "⚙️") Library:AddSection(mainTab, "Basic Functions", "⚔️") local ReplicatedStorage = game:GetService("ReplicatedStorage") local MainRemote = ReplicatedStorage.Remotes.MainRemote local spinsCount = 1 local giveSpins = false local spinsThread Library:AddInputText(mainTab, "Set Number Spins", "Set Number...", function(text) local num = tonumber(text) if num and num > 0 then spinsCount = math.floor(num) else end end) Library:AddToggle(mainTab, "Get Spins", function(state) giveSpins = state if giveSpins then spinsThread = coroutine.create(function() while giveSpins do MainRemote:FireServer("AddSpin=" .. spinsCount) wait(1) end end) coroutine.resume(spinsThread) else end end) local RebirthEvent = ReplicatedStorage:WaitForChild("Channels_F"):WaitForChild("Client_Server_F"):WaitForChild("RF"):WaitForChild("Player_Rebirth") _G.AutoRebirthEnabled = false Library:AddToggle(mainTab, "Auto Rebirth", function(state) _G.AutoRebirthEnabled = state if state then spawn(function() while _G.AutoRebirthEnabled do wait(5) RebirthEvent:InvokeServer() end end) else end end) Library:AddSection(utilitiesTab, "Character", "👤") local player = game:GetService("Players").LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local humanoid = character:WaitForChild("Humanoid") Library:AddSlider(utilitiesTab, "Speed", 16, 500, humanoid.WalkSpeed, function(value) humanoid.WalkSpeed = value end) Library:AddSlider(utilitiesTab, "Jump", 50, 500, humanoid.JumpPower, function(value) humanoid.JumpPower = value end) player.CharacterAdded:Connect(function(newCharacter) character = newCharacter humanoid = newCharacter:WaitForChild("Humanoid") end) Library:AddSection(utilitiesTab, "Other Functions", "🔧") -- AntiAFK local VirtualInputManager = game:GetService("VirtualInputManager") _G.AntiAFKEnabled = false Library:AddToggle(utilitiesTab, "AntiAFK", function(state) _G.AntiAFKEnabled = state if state then local connection connection = game:GetService("Players").LocalPlayer.Idled:Connect(function() if _G.AntiAFKEnabled then VirtualInputManager:SendKeyEvent(true, "Space", false, game) wait(0.1) VirtualInputManager:SendKeyEvent(false, "Space", false, game) else connection:Disconnect() end end) end end) local RunService = game:GetService("RunService") _G.NoclipEnabled = false local noclipConnection Library:AddToggle(utilitiesTab, "Noclip", function(state) _G.NoclipEnabled = state if state then if noclipConnection then noclipConnection:Disconnect() end noclipConnection = RunService.Stepped:Connect(function() if _G.NoclipEnabled and character then for _, part in pairs(character:GetDescendants()) do if part:IsA("BasePart") then part.CanCollide = false end end end end) else if noclipConnection then noclipConnection:Disconnect() noclipConnection = nil end end end) Library:AddSection(communityTab, "My social networks", "🌐") Library:AddButton(communityTab, "📢 Telegram Channel (@dinasscripts)", function() if setclipboard then setclipboard("https://t.me/dinasscripts") end local message = "The link to the Telegram channel has been copied to your clipboard!" print(message) end) Library:AddParagraph(communityTab, "Join our telegram channel for the latest updates and news!", "📢") -- Дискорд сервер Library:AddButton(communityTab, "💬 Discord Channel (Soon)", function() if setclipboard then setclipboard("soon") end local message = "copied" print(message) end) Library:AddParagraph(communityTab, "Join my Discord community for communication and support!", "💬") Library:AddLabel(communityTab, "Join our community!", "👥") Library:AddParagraph(communityTab, "We welcome every new member!", "🌟") -- Вкладка Настройки Library:AddToggle(settingsTab, "Enable Rainbow Corners", function(state) if state then window:EnableRainbowCorners() else window:DisableRainbowCorners() end end) Library:AddLabel(settingsTab, "Version: 1.0", "ℹ️") Library:AddLabel(settingsTab, "Last Update: " .. os.date("%d.%m.%Y"), "📅") Library:AddParagraph(settingsTab, "Menu By Dinas", "📋")