Back to Scripts
IVANILTON HUB

IVANILTON HUB

ScriptBlox
Universal Free

Game: Universal Script 📌

110 Views
0 Likes
1 Dislikes
ivaniltonlucas

ivaniltonlucas

offline

Features

Ivanilton Hub, script universal

Script Code

-- Carregar Rayfield da SiriusSoftwareLtd
local Rayfield = loadstring(game:HttpGet("https://raw.githubusercontent.com/SiriusSoftwareLtd/Rayfield/main/source.lua"))()

-- Criar Janela com KeySystem
local Window = Rayfield:CreateWindow({
   Name = "IVANILTON HUB",
   LoadingTitle = "IVANILTON HUB",
   LoadingSubtitle = "by Ivanilton",
   ConfigurationSaving = {
      Enabled = true,
      FolderName = "IVANILTONHubConfig",
      FileName = "IVANILTONHub"
   },
   KeySystem = true,
   KeySettings = {
      Title = "IVANILTON HUB | Key System",
      Subtitle = "Digite a key para acessar",
      Note = "Key: SIGMABOY",
      FileName = "IVANILTONHubKey",
      SaveKey = true,
      GrabKeyFromSite = false,
      Key = {"SIGMABOY"}
   }
})

-- Aba Principal
local MainTab = Window:CreateTab("Principal", 4483362458)

MainTab:CreateButton({
   Name = "Ativar Velocidade",
   Callback = function()
      game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 50
   end,
})

MainTab:CreateSlider({
   Name = "Configurar Velocidade",
   Range = {16, 200},
   Increment = 1,
   Suffix = "Velocidade",
   CurrentValue = 16,
   Callback = function(Value)
      game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Value
   end,
})

MainTab:CreateToggle({
   Name = "Super Pulo",
   CurrentValue = false,
   Callback = function(Value)
      if Value then
         game.Players.LocalPlayer.Character.Humanoid.JumpPower = 200
      else
         game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
      end
   end,
})

MainTab:CreateButton({
   Name = "Resetar Velocidade",
   Callback = function()
      game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
   end,
})

MainTab:CreateButton({
   Name = "Resetar Pulo",
   Callback = function()
      game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
   end,
})

-- Aba Aimbot
local AimbotTab = Window:CreateTab("Aimbot", 4483362458)

local aiming = false
local circleGui = nil

AimbotTab:CreateToggle({
   Name = "Aimbot (mirar sempre na cabeça do jogador mais próximo)",
   CurrentValue = false,
   Callback = function(Value)
      aiming = Value
   end,
})

-- Loop que mantém a câmera mirando
game:GetService("RunService").RenderStepped:Connect(function()
   if aiming then
      local player = game.Players.LocalPlayer
      local character = player.Character
      local humanoidRootPart = character and character:FindFirstChild("HumanoidRootPart")

      if humanoidRootPart then
         local alvo = nil
         local distancia = math.huge

         for _, otherPlayer in pairs(game.Players:GetPlayers()) do
            if otherPlayer ~= player and otherPlayer.Character and otherPlayer.Character:FindFirstChild("Head") then
               local dist = (otherPlayer.Character.Head.Position - humanoidRootPart.Position).Magnitude
               if dist < distancia then
                  distancia = dist
                  alvo = otherPlayer.Character.Head
               end
            end
         end

         if alvo then
            workspace.CurrentCamera.CFrame = CFrame.new(workspace.CurrentCamera.CFrame.Position, alvo.Position)
         end
      end
   end
end)

-- Botão para criar círculo na tela
AimbotTab:CreateButton({
   Name = "Círculo na tela",
   Callback = function()
      if circleGui then
         circleGui:Destroy()
         circleGui = nil
         return
      end

      circleGui = Instance.new("ScreenGui")
      circleGui.Name = "AimbotCircle"
      circleGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")

      local circle = Instance.new("Frame", circleGui)
      circle.Size = UDim2.new(0, 200, 0, 200) -- círculo maior
      circle.AnchorPoint = Vector2.new(0.5, 0.5) -- centralizado
      circle.Position = UDim2.new(0.5, 0, 0.5, 0) -- meio da tela
      circle.BackgroundTransparency = 1

      local uiCorner = Instance.new("UICorner", circle)
      uiCorner.CornerRadius = UDim.new(1, 0)

      local stroke = Instance.new("UIStroke", circle)
      stroke.Thickness = 3
      stroke.Color = Color3.fromRGB(255, 255, 255) -- branco
   end,
})

-- Aba Visual
local VisualTab = Window:CreateTab("Visual", 4483362458)

local espEnabled = false
local highlights = {}

VisualTab:CreateToggle({
   Name = "ESP (mostrar jogadores com destaque)",
   CurrentValue = false,
   Callback = function(Value)
      espEnabled = Value

      if espEnabled then
         for _, otherPlayer in pairs(game.Players:GetPlayers()) do
            if otherPlayer.Character and otherPlayer.Character:FindFirstChild("HumanoidRootPart") then
               local highlight = Instance.new("Highlight")
               highlight.FillTransparency = 1
               highlight.OutlineColor = Color3.fromRGB(0, 255, 0)
               highlight.OutlineTransparency = 0
               highlight.Parent = otherPlayer.Character
               highlights[otherPlayer.Name] = highlight
            end
         end

         game.Players.PlayerAdded:Connect(function(newPlayer)
            newPlayer.CharacterAdded:Connect(function(char)
               local highlight = Instance.new("Highlight")
               highlight.FillTransparency = 1
               highlight.OutlineColor = Color3.fromRGB(0, 255, 0)
               highlight.OutlineTransparency = 0
               highlight.Parent = char
               highlights[newPlayer.Name] = highlight
            end)
         end)

      else
         for _, h in pairs(highlights) do
            if h then h:Destroy() end
         end
         highlights = {}
      end
   end,
})

local nightVision = nil

VisualTab:CreateToggle({
   Name = "Night Vision",
   CurrentValue = false,
   Callback = function(Value)
      if Value then
         nightVision = Instance.new("ColorCorrectionEffect")
         nightVision.Name = "NightVisionEffect"
         nightVision.Brightness = 0.2
         nightVision.Contrast = 0.5
         nightVision.Saturation = 1.5
         nightVision.TintColor = Color3.fromRGB(150, 255, 150)
         nightVision.Parent = game:GetService("Lighting")
      else
         if nightVision then
            nightVision:Destroy()
            nightVision = nil
         end
      end
   end,
})

local fullbrightEnabled = false
local lighting = game:GetService("Lighting")

VisualTab:CreateToggle({
   Name = "Fullbright",
   CurrentValue = false,
   Callback = function(Value)
      fullbrightEnabled = Value

      if fullbrightEnabled then
         lighting.Brightness = 2
         lighting.ClockTime = 12
         lighting.FogEnd = 100000
         lighting.GlobalShadows = false
         lighting.OutdoorAmbient = Color3.fromRGB(255, 255, 255)
      else
         lighting.Brightness = 1
         lighting.ClockTime = 14
         lighting.FogEnd = 1000
         lighting.GlobalShadows = true
         lighting.OutdoorAmbient = Color3.fromRGB(127, 127, 127)
      end
   end,
})

-- Aba Créditos
local CreditsTab = Window:CreateTab("Créditos", 4483362458)

CreditsTab:CreateSection("Feito por Ivanilton/ilu1_22")

CreditsTab:CreateParagraph({Title = "Owners:", Content = [[
Lorenzowalker1230
IvaniltonFileName2
ixi362
Minatinbr1
]]})

Ratings & Reviews

No reviews yet. Be the first to review this script!

Comments (0)

Please login to comment

Login with Discord

Loading comments...