Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --SkipperHub v1--
- local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
- local Window = Rayfield:CreateWindow({
- Name = "SkipperHub | https://discord.gg/AHhJYESa",
- Icon = 0, -- Icon in Topbar. Can use Lucide Icons (string) or Roblox Image (number). 0 to use no icon (default).
- LoadingTitle = "Skipper´s GUI",
- LoadingSubtitle = "by Skipper",
- Theme = "Default", -- Check https://docs.sirius.menu/rayfield/configuration/themes
- DisableRayfieldPrompts = false,
- DisableBuildWarnings = false, -- Prevents Rayfield from warning when the script has a version mismatch with the interface
- ConfigurationSaving = {
- Enabled = true,
- FolderName = nil, -- Create a custom folder for your hub/game
- FileName = "Big Hub"
- },
- Discord = {
- Enabled = false, -- Prompt the user to join your Discord server if their executor supports it
- Invite = "noinvitelink", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ ABCD would be ABCD
- RememberJoins = false -- Set this to false to make them join the discord every time they load it up
- },
- KeySystem = true, -- Set this to true to use our key system
- KeySettings = {
- Title = "Skipper´s GUI",
- Subtitle = "Key System",
- Note = "Join Discrod for key", -- Use this to tell the user how to get a key
- FileName = "Key", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file
- SaveKey = false, -- The user's key will be saved, but if you change the key, they will be unable to use your script
- GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
- 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")
- }
- })
- local MainTab = Window:CreateTab("ESP", nil) -- Title, Image
- local MainSection = MainTab:CreateSection("Esp")
- local AimTab = Window:CreateTab("Aim", nil) -- Title, Image
- local AimSection = AimTab:CreateSection("Aimbot")
- local OtherTab = Window:CreateTab("other", nil) -- Title, Image
- local OtherSection = OtherTab:CreateSection("Scripthubs")
- Rayfield:Notify({
- Title = "Executed!",
- Content = "Join our Discord for more!",
- Duration = 5,
- Image = nil,
- })
- local Button = MainTab:CreateButton({
- Name = "ESP",
- Callback = function()
- -- LocalScript in StarterPlayer > StarterPlayerScripts
- local Players = game:GetService("Players")
- local RunService = game:GetService("RunService")
- local localPlayer = Players.LocalPlayer
- -- Tracer-Einstellungen
- local function createTracer()
- local tracer = Drawing.new("Line")
- tracer.Color = Color3.fromRGB(0, 255, 0)
- tracer.Thickness = 1.5
- tracer.Transparency = 1
- tracer.Visible = true
- return tracer
- end
- -- Spieler ESP hinzufügen (Highlight + Tracer)
- local trackedPlayers = {}
- local function addESP(targetPlayer)
- if targetPlayer == localPlayer then return end
- local function onCharacterAdded(character)
- -- Highlight hinzufügen
- local highlight = Instance.new("Highlight")
- highlight.FillColor = Color3.fromRGB(0, 255, 0)
- highlight.FillTransparency = 0.5
- highlight.OutlineTransparency = 1
- highlight.Adornee = character
- highlight.Parent = character
- -- Tracer erstellen
- local tracer = createTracer()
- trackedPlayers[targetPlayer] = {
- character = character,
- tracer = tracer
- }
- end
- if targetPlayer.Character then
- onCharacterAdded(targetPlayer.Character)
- end
- targetPlayer.CharacterAdded:Connect(onCharacterAdded)
- end
- -- Alle bestehenden Spieler tracken
- for _, player in pairs(Players:GetPlayers()) do
- addESP(player)
- end
- -- Neue Spieler tracken
- Players.PlayerAdded:Connect(function(player)
- addESP(player)
- end)
- -- Update Tracers jedes Frame
- RunService.RenderStepped:Connect(function()
- for player, data in pairs(trackedPlayers) do
- local character = data.character
- local tracer = data.tracer
- if character and character:FindFirstChild("HumanoidRootPart") then
- local hrp = character.HumanoidRootPart
- local screenPos, onScreen = workspace.CurrentCamera:WorldToViewportPoint(hrp.Position)
- if onScreen then
- local bottomOfScreen = Vector2.new(workspace.CurrentCamera.ViewportSize.X / 2, workspace.CurrentCamera.ViewportSize.Y)
- tracer.From = bottomOfScreen
- tracer.To = Vector2.new(screenPos.X, screenPos.Y)
- tracer.Visible = true
- else
- tracer.Visible = false
- end
- else
- tracer.Visible = false
- end
- end
- end)
- end,
- })
- local MainButton = MainTab:CreateButton({
- Name = "Hitboxes",
- Callback = function()
- _G.HeadSize = 10
- _G.HitboxSize = Vector3.new(5, 5, 5) -- размер хитбокса
- _G.Disabled = false
- _G.ToggleKey = Enum.KeyCode.H -- клавиша для включения/выключения
- -- Обработчик для включения/выключения хитбоксов
- game:GetService('UserInputService').InputBegan:Connect(function(input, isProcessed)
- if not isProcessed and input.KeyCode == _G.ToggleKey then
- _G.Disabled = not _G.Disabled
- end
- end)
- game:GetService('RunService').RenderStepped:Connect(function()
- if not _G.Disabled then
- local localPlayer = game:GetService('Players').LocalPlayer
- for i, v in next, game:GetService('Players'):GetPlayers() do
- if v.Name ~= localPlayer.Name then
- pcall(function()
- -- Изменение размера и свойств головы
- v.Character.Head.Size = Vector3.new(_G.HeadSize, _G.HeadSize, _G.HeadSize)
- v.Character.Head.Transparency = 1
- v.Character.Head.BrickColor = BrickColor.new("Red")
- v.Character.Head.Material = "Neon"
- v.Character.Head.CanCollide = false
- v.Character.Head.Massless = true
- -- Создание хитбокса
- if not v.Character:FindFirstChild("Hitbox") then
- local hitbox = Instance.new("Part")
- hitbox.Name = "Hitbox"
- hitbox.Size = _G.HitboxSize
- hitbox.Transparency = 0.8 -- более высокая прозрачность
- hitbox.BrickColor = BrickColor.new("red")
- hitbox.Material = "Neon"
- hitbox.CanCollide = false
- hitbox.Massless = true
- hitbox.Anchored = false
- hitbox.CFrame = v.Character.Head.CFrame
- hitbox.Parent = v.Character
- local weld = Instance.new("WeldConstraint")
- weld.Part0 = v.Character.Head
- weld.Part1 = hitbox
- weld.Parent = hitbox
- -- Создание BillboardGui для отображения расстояния
- local billboardGui = Instance.new("BillboardGui")
- billboardGui.Name = "DistanceGui"
- billboardGui.Adornee = hitbox
- billboardGui.Size = UDim2.new(0, 200, 0, 50)
- billboardGui.StudsOffset = Vector3.new(0, 3, 0)
- billboardGui.Parent = hitbox
- local textLabel = Instance.new("TextLabel")
- textLabel.Name = "DistanceLabel"
- textLabel.Size = UDim2.new(1, 0, 1, 0)
- textLabel.BackgroundTransparency = 1
- textLabel.TextColor3 = Color3.new(1, 1, 1)
- textLabel.TextStrokeTransparency = 0.5
- textLabel.TextScaled = true
- textLabel.Parent = billboardGui
- end
- -- Обновление позиции хитбокса и текста
- local hitbox = v.Character:FindFirstChild("Hitbox")
- local distanceGui = hitbox:FindFirstChild("DistanceGui")
- if hitbox and distanceGui then
- hitbox.CFrame = v.Character.Head.CFrame
- local distance = (localPlayer.Character.HumanoidRootPart.Position - v.Character.HumanoidRootPart.Position).magnitude
- local distanceLabel = distanceGui:FindFirstChild("DistanceLabel")
- if distanceLabel then
- distanceLabel.Text = string.format("Distance: %.0f meters", distance)
- end
- end
- -- Изменение цвета хитбокса в зависимости от здоровья игрока
- if v.Character:FindFirstChildOfClass("Humanoid") then
- local health = v.Character.Humanoid.Health
- if health < 50 then
- hitbox.BrickColor = BrickColor.new("green")
- else
- hitbox.BrickColor = BrickColor.new("red")
- end
- end
- end)
- end
- end
- end
- end)
- end,
- })
- local Toggle = OtherTab:CreateToggle({
- Name = "Infinity Yield",
- CurrentValue = false,
- 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
- Callback = function(Value)
- loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
- end,
- })
- local Button = AimTab:CreateButton({
- Name = "Aimbot",
- Callback = function()
- -- LocalScript in StarterPlayer > StarterPlayerScripts
- local Players = game:GetService("Players")
- local RunService = game:GetService("RunService")
- local UIS = game:GetService("UserInputService")
- local LocalPlayer = Players.LocalPlayer
- local Camera = workspace.CurrentCamera
- local aimlockEnabled = false
- local targetPlayer = nil
- -- Funktion: Abstand zum Spieler berechnen
- local function getDistance(p1, p2)
- return (p1 - p2).Magnitude
- end
- -- Nächsten Spieler finden (außer LocalPlayer)
- local function getClosestPlayer()
- local closest = nil
- local shortestDistance = math.huge
- for _, player in pairs(Players:GetPlayers()) do
- if player ~= LocalPlayer and player.Character and player.Character:FindFirstChild("HumanoidRootPart") then
- local distance = getDistance(LocalPlayer.Character.HumanoidRootPart.Position, player.Character.HumanoidRootPart.Position)
- if distance < shortestDistance then
- shortestDistance = distance
- closest = player
- end
- end
- end
- return closest
- end
- -- Zielverfolgung aktiv halten
- RunService.RenderStepped:Connect(function()
- if aimlockEnabled and targetPlayer and targetPlayer.Character and targetPlayer.Character:FindFirstChild("HumanoidRootPart") then
- local targetPos = targetPlayer.Character.HumanoidRootPart.Position
- Camera.CFrame = CFrame.new(Camera.CFrame.Position, targetPos)
- end
- end)
- -- Q zum Aktivieren / Deaktivieren
- UIS.InputBegan:Connect(function(input, gameProcessed)
- if gameProcessed then return end
- if input.KeyCode == Enum.KeyCode.Q then
- aimlockEnabled = not aimlockEnabled
- if aimlockEnabled then
- targetPlayer = getClosestPlayer()
- print("Zielverfolgung aktiviert auf: " .. (targetPlayer and targetPlayer.Name or "Kein Ziel"))
- else
- targetPlayer = nil
- print("Zielverfolgung deaktiviert")
- end
- end
- end)
- end,
- })
- local Toggle = OtherTab:CreateToggle({
- Name = "Solara v3",
- CurrentValue = false,
- 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
- Callback = function(Value)
- loadstring(game:HttpGet("https://raw.githubusercontent.com/samuraa1/Solara-Hub/refs/heads/main/Solara%20Hub.lua"))()
- end,
- })
- local Toggle = OtherTab:CreateToggle({
- Name = "Chat bypasser",
- CurrentValue = false,
- 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
- Callback = function(Value)
- loadstring(game:HttpGet('https://raw.githubusercontent.com/ffedex/characters/refs/heads/main/chars', true))()
- end,
- })
- local Toggle = OtherTab:CreateToggle({
- Name = "Touch Fling",
- CurrentValue = false,
- 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
- Callback = function(Value)
- loadstring(game:HttpGet('loadstring(game:HttpGet("https://raw.githubusercontent.com/long191910/all-my-roblox-script/refs/heads/main/touchfling.lua"))()'))()
- end,
- })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement