Advertisement
jenitho

Untitled

Apr 5th, 2025
279
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 13.06 KB | None | 0 0
  1. --SkipperHub v1--
  2.  
  3. local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
  4.  
  5. local Window = Rayfield:CreateWindow({
  6.    Name = "SkipperHub | https://discord.gg/AHhJYESa",
  7.    Icon = 0, -- Icon in Topbar. Can use Lucide Icons (string) or Roblox Image (number). 0 to use no icon (default).
  8.    LoadingTitle = "Skipper´s GUI",
  9.    LoadingSubtitle = "by Skipper",
  10.    Theme = "Default", -- Check https://docs.sirius.menu/rayfield/configuration/themes
  11.  
  12.    DisableRayfieldPrompts = false,
  13.    DisableBuildWarnings = false, -- Prevents Rayfield from warning when the script has a version mismatch with the interface
  14.  
  15.    ConfigurationSaving = {
  16.       Enabled = true,
  17.       FolderName = nil, -- Create a custom folder for your hub/game
  18.       FileName = "Big Hub"
  19.    },
  20.  
  21.    Discord = {
  22.       Enabled = false, -- Prompt the user to join your Discord server if their executor supports it
  23.       Invite = "noinvitelink", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ ABCD would be ABCD
  24.       RememberJoins = false -- Set this to false to make them join the discord every time they load it up
  25.    },
  26.  
  27.    KeySystem = true, -- Set this to true to use our key system
  28.    KeySettings = {
  29.       Title = "Skipper´s GUI",
  30.       Subtitle = "Key System",
  31.       Note = "Join Discrod for key", -- Use this to tell the user how to get a key
  32.       FileName = "Key", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file
  33.       SaveKey = false, -- The user's key will be saved, but if you change the key, they will be unable to use your script
  34.       GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
  35.       Key = {"GUI"} -- List of keys that will be accepted by the system, can be RAW file links (pastebin, github etc) or simple strings ("hello","key22")
  36.    }
  37. })
  38.  
  39. local MainTab = Window:CreateTab("ESP", nil) -- Title, Image
  40. local MainSection = MainTab:CreateSection("Esp")
  41.  
  42.  
  43. local AimTab = Window:CreateTab("Aim", nil) -- Title, Image
  44. local AimSection = AimTab:CreateSection("Aimbot")
  45.  
  46.  
  47. local OtherTab = Window:CreateTab("other", nil) -- Title, Image
  48. local OtherSection = OtherTab:CreateSection("Scripthubs")
  49.  
  50.  
  51. Rayfield:Notify({
  52.    Title = "Executed!",
  53.    Content = "Join our Discord for more!",
  54.    Duration = 5,
  55.    Image = nil,
  56. })
  57.  
  58. local Button = MainTab:CreateButton({
  59.    Name = "ESP",
  60.    Callback = function()
  61.    -- LocalScript in StarterPlayer > StarterPlayerScripts
  62.  
  63. local Players = game:GetService("Players")
  64. local RunService = game:GetService("RunService")
  65. local localPlayer = Players.LocalPlayer
  66.  
  67. -- Tracer-Einstellungen
  68. local function createTracer()
  69.     local tracer = Drawing.new("Line")
  70.     tracer.Color = Color3.fromRGB(0, 255, 0)
  71.     tracer.Thickness = 1.5
  72.     tracer.Transparency = 1
  73.     tracer.Visible = true
  74.     return tracer
  75. end
  76.  
  77. -- Spieler ESP hinzufügen (Highlight + Tracer)
  78. local trackedPlayers = {}
  79.  
  80. local function addESP(targetPlayer)
  81.     if targetPlayer == localPlayer then return end
  82.  
  83.     local function onCharacterAdded(character)
  84.         -- Highlight hinzufügen
  85.         local highlight = Instance.new("Highlight")
  86.         highlight.FillColor = Color3.fromRGB(0, 255, 0)
  87.         highlight.FillTransparency = 0.5
  88.         highlight.OutlineTransparency = 1
  89.         highlight.Adornee = character
  90.         highlight.Parent = character
  91.  
  92.         -- Tracer erstellen
  93.         local tracer = createTracer()
  94.         trackedPlayers[targetPlayer] = {
  95.             character = character,
  96.             tracer = tracer
  97.         }
  98.     end
  99.  
  100.     if targetPlayer.Character then
  101.         onCharacterAdded(targetPlayer.Character)
  102.     end
  103.  
  104.     targetPlayer.CharacterAdded:Connect(onCharacterAdded)
  105. end
  106.  
  107. -- Alle bestehenden Spieler tracken
  108. for _, player in pairs(Players:GetPlayers()) do
  109.     addESP(player)
  110. end
  111.  
  112. -- Neue Spieler tracken
  113. Players.PlayerAdded:Connect(function(player)
  114.     addESP(player)
  115. end)
  116.  
  117. -- Update Tracers jedes Frame
  118. RunService.RenderStepped:Connect(function()
  119.     for player, data in pairs(trackedPlayers) do
  120.         local character = data.character
  121.         local tracer = data.tracer
  122.  
  123.         if character and character:FindFirstChild("HumanoidRootPart") then
  124.             local hrp = character.HumanoidRootPart
  125.             local screenPos, onScreen = workspace.CurrentCamera:WorldToViewportPoint(hrp.Position)
  126.             if onScreen then
  127.                 local bottomOfScreen = Vector2.new(workspace.CurrentCamera.ViewportSize.X / 2, workspace.CurrentCamera.ViewportSize.Y)
  128.                 tracer.From = bottomOfScreen
  129.                 tracer.To = Vector2.new(screenPos.X, screenPos.Y)
  130.                 tracer.Visible = true
  131.             else
  132.                 tracer.Visible = false
  133.             end
  134.         else
  135.             tracer.Visible = false
  136.         end
  137.     end
  138. end)
  139.    end,
  140. })
  141.  
  142. local MainButton = MainTab:CreateButton({
  143.    Name = "Hitboxes",
  144.    Callback = function()
  145.   _G.HeadSize = 10
  146. _G.HitboxSize = Vector3.new(5, 5, 5)  -- размер хитбокса
  147. _G.Disabled = false
  148. _G.ToggleKey = Enum.KeyCode.H  -- клавиша для включения/выключения
  149.  
  150. -- Обработчик для включения/выключения хитбоксов
  151. game:GetService('UserInputService').InputBegan:Connect(function(input, isProcessed)
  152.     if not isProcessed and input.KeyCode == _G.ToggleKey then
  153.         _G.Disabled = not _G.Disabled
  154.     end
  155. end)
  156.  
  157. game:GetService('RunService').RenderStepped:Connect(function()
  158.     if not _G.Disabled then
  159.         local localPlayer = game:GetService('Players').LocalPlayer
  160.         for i, v in next, game:GetService('Players'):GetPlayers() do
  161.             if v.Name ~= localPlayer.Name then
  162.                 pcall(function()
  163.                     -- Изменение размера и свойств головы
  164.                     v.Character.Head.Size = Vector3.new(_G.HeadSize, _G.HeadSize, _G.HeadSize)
  165.                     v.Character.Head.Transparency = 1
  166.                     v.Character.Head.BrickColor = BrickColor.new("Red")
  167.                     v.Character.Head.Material = "Neon"
  168.                     v.Character.Head.CanCollide = false
  169.                     v.Character.Head.Massless = true
  170.                    
  171.                     -- Создание хитбокса
  172.                     if not v.Character:FindFirstChild("Hitbox") then
  173.                         local hitbox = Instance.new("Part")
  174.                         hitbox.Name = "Hitbox"
  175.                         hitbox.Size = _G.HitboxSize
  176.                         hitbox.Transparency = 0.8  -- более высокая прозрачность
  177.                         hitbox.BrickColor = BrickColor.new("red")
  178.                         hitbox.Material = "Neon"
  179.                         hitbox.CanCollide = false
  180.                         hitbox.Massless = true
  181.                         hitbox.Anchored = false
  182.                         hitbox.CFrame = v.Character.Head.CFrame
  183.                         hitbox.Parent = v.Character
  184.                        
  185.                         local weld = Instance.new("WeldConstraint")
  186.                         weld.Part0 = v.Character.Head
  187.                         weld.Part1 = hitbox
  188.                         weld.Parent = hitbox
  189.                        
  190.                         -- Создание BillboardGui для отображения расстояния
  191.                         local billboardGui = Instance.new("BillboardGui")
  192.                         billboardGui.Name = "DistanceGui"
  193.                         billboardGui.Adornee = hitbox
  194.                         billboardGui.Size = UDim2.new(0, 200, 0, 50)
  195.                         billboardGui.StudsOffset = Vector3.new(0, 3, 0)
  196.                         billboardGui.Parent = hitbox
  197.                        
  198.                         local textLabel = Instance.new("TextLabel")
  199.                         textLabel.Name = "DistanceLabel"
  200.                         textLabel.Size = UDim2.new(1, 0, 1, 0)
  201.                         textLabel.BackgroundTransparency = 1
  202.                         textLabel.TextColor3 = Color3.new(1, 1, 1)
  203.                         textLabel.TextStrokeTransparency = 0.5
  204.                         textLabel.TextScaled = true
  205.                         textLabel.Parent = billboardGui
  206.                     end
  207.  
  208.                     -- Обновление позиции хитбокса и текста
  209.                     local hitbox = v.Character:FindFirstChild("Hitbox")
  210.                     local distanceGui = hitbox:FindFirstChild("DistanceGui")
  211.                     if hitbox and distanceGui then
  212.                         hitbox.CFrame = v.Character.Head.CFrame
  213.                         local distance = (localPlayer.Character.HumanoidRootPart.Position - v.Character.HumanoidRootPart.Position).magnitude
  214.                         local distanceLabel = distanceGui:FindFirstChild("DistanceLabel")
  215.                         if distanceLabel then
  216.                             distanceLabel.Text = string.format("Distance: %.0f meters", distance)
  217.                         end
  218.                     end
  219.                    
  220.                     -- Изменение цвета хитбокса в зависимости от здоровья игрока
  221.                     if v.Character:FindFirstChildOfClass("Humanoid") then
  222.                         local health = v.Character.Humanoid.Health
  223.                         if health < 50 then
  224.                             hitbox.BrickColor = BrickColor.new("green")
  225.                         else
  226.                             hitbox.BrickColor = BrickColor.new("red")
  227.                         end
  228.                     end
  229.                 end)
  230.             end
  231.         end
  232.     end
  233. end)
  234.    end,
  235. })
  236.  
  237. local Toggle = OtherTab:CreateToggle({
  238.    Name = "Infinity Yield",
  239.    CurrentValue = false,
  240.    Flag = "Toggle1", -- A flag is the identifier for the configuration file, make sure every element has a different flag if you're using configuration saving to ensure no overlaps
  241.    Callback = function(Value)
  242.    loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  243.    end,
  244. })
  245.  
  246. local Button = AimTab:CreateButton({
  247.    Name = "Aimbot",
  248.    Callback = function()
  249.    -- LocalScript in StarterPlayer > StarterPlayerScripts
  250.  
  251. local Players = game:GetService("Players")
  252. local RunService = game:GetService("RunService")
  253. local UIS = game:GetService("UserInputService")
  254. local LocalPlayer = Players.LocalPlayer
  255. local Camera = workspace.CurrentCamera
  256.  
  257. local aimlockEnabled = false
  258. local targetPlayer = nil
  259.  
  260. -- Funktion: Abstand zum Spieler berechnen
  261. local function getDistance(p1, p2)
  262.     return (p1 - p2).Magnitude
  263. end
  264.  
  265. -- Nächsten Spieler finden (außer LocalPlayer)
  266. local function getClosestPlayer()
  267.     local closest = nil
  268.     local shortestDistance = math.huge
  269.  
  270.     for _, player in pairs(Players:GetPlayers()) do
  271.         if player ~= LocalPlayer and player.Character and player.Character:FindFirstChild("HumanoidRootPart") then
  272.             local distance = getDistance(LocalPlayer.Character.HumanoidRootPart.Position, player.Character.HumanoidRootPart.Position)
  273.             if distance < shortestDistance then
  274.                 shortestDistance = distance
  275.                 closest = player
  276.             end
  277.         end
  278.     end
  279.  
  280.     return closest
  281. end
  282.  
  283. -- Zielverfolgung aktiv halten
  284. RunService.RenderStepped:Connect(function()
  285.     if aimlockEnabled and targetPlayer and targetPlayer.Character and targetPlayer.Character:FindFirstChild("HumanoidRootPart") then
  286.         local targetPos = targetPlayer.Character.HumanoidRootPart.Position
  287.         Camera.CFrame = CFrame.new(Camera.CFrame.Position, targetPos)
  288.     end
  289. end)
  290.  
  291. -- Q zum Aktivieren / Deaktivieren
  292. UIS.InputBegan:Connect(function(input, gameProcessed)
  293.     if gameProcessed then return end
  294.     if input.KeyCode == Enum.KeyCode.Q then
  295.         aimlockEnabled = not aimlockEnabled
  296.         if aimlockEnabled then
  297.             targetPlayer = getClosestPlayer()
  298.             print("Zielverfolgung aktiviert auf: " .. (targetPlayer and targetPlayer.Name or "Kein Ziel"))
  299.         else
  300.             targetPlayer = nil
  301.             print("Zielverfolgung deaktiviert")
  302.         end
  303.     end
  304. end)
  305.    end,
  306. })
  307.  
  308. local Toggle = OtherTab:CreateToggle({
  309.    Name = "Solara v3",
  310.    CurrentValue = false,
  311.    Flag = "Toggle2", -- A flag is the identifier for the configuration file, make sure every element has a different flag if you're using configuration saving to ensure no overlaps
  312.    Callback = function(Value)
  313.    loadstring(game:HttpGet("https://raw.githubusercontent.com/samuraa1/Solara-Hub/refs/heads/main/Solara%20Hub.lua"))()
  314.    end,
  315. })
  316.  
  317. local Toggle = OtherTab:CreateToggle({
  318.    Name = "Chat bypasser",
  319.    CurrentValue = false,
  320.    Flag = "Toggle3", -- A flag is the identifier for the configuration file, make sure every element has a different flag if you're using configuration saving to ensure no overlaps
  321.    Callback = function(Value)
  322.    loadstring(game:HttpGet('https://raw.githubusercontent.com/ffedex/characters/refs/heads/main/chars', true))()
  323.    end,
  324. })
  325.  
  326. local Toggle = OtherTab:CreateToggle({
  327.    Name = "Touch Fling",
  328.    CurrentValue = false,
  329.    Flag = "Toggle4", -- A flag is the identifier for the configuration file, make sure every element has a different flag if you're using configuration saving to ensure no overlaps
  330.    Callback = function(Value)
  331.     loadstring(game:HttpGet('loadstring(game:HttpGet("https://raw.githubusercontent.com/long191910/all-my-roblox-script/refs/heads/main/touchfling.lua"))()'))()
  332.    end,
  333. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement