Top.Mail.Ru
Ответы

Что делать если не работают скрипты xeno

Что делать если не работают скрипты xeno по типу таких loadstring(game:HttpGet("https://raw.githubusercontent.com/ghostofcelleron/Celeron/refs/heads/main/Celeron's Loader"))()

а такие работают
local Players = game:GetService("Players") local RunService = game:GetService("RunService") local UserInputService = game:GetService("UserInputService") local Camera = workspace.CurrentCamera local CoreGui = game:GetService("CoreGui") local LocalPlayer = Players.LocalPlayer local aimbotKey = Enum.UserInputType.MouseButton2 local shootKey = Enum.UserInputType.MouseButton1 local espEnabled = true local imageUrl = "rbxassetid://118795696831556" local imageSize = 50 local imageTransparency = 0.5 local currentTarget = nil local lastShootTime = 0 local targetLostCounter = 0 local TARGET_LOST_THRESHOLD = 5 local hitSound = Instance.new("Sound") hitSound.SoundId = "rbxasset://sounds/buttonclick.mp3" hitSound.Volume = 0.5 hitSound.Parent = LocalPlayer:WaitForChild("PlayerGui") local screenGui = CoreGui:FindFirstChild("MellstroyESP") if not screenGui then screenGui = Instance.new("ScreenGui") screenGui.Name = "MellstroyESP" screenGui.Parent = CoreGui end local espBillboards = {} local function createBillboard(player) if espBillboards[player] then return end if not player.Character then return end local head = player.Character:FindFirstChild("Head") or player.Character:FindFirstChild("UpperTorso") if not head then return end local billboard = Instance.new("BillboardGui") billboard.Size = UDim2.new(0, imageSize, 0, imageSize) billboard.Adornee = head billboard.AlwaysOnTop = true billboard.Enabled = espEnabled billboard.Parent = screenGui local image = Instance.new("ImageLabel") image.Size = UDim2.new(1, 0, 1, 0) image.BackgroundTransparency = 1 image.Image = imageUrl image.ImageTransparency = imageTransparency image.Parent = billboard espBillboards[player] = billboard end local function removeBillboard(player) local billboard = espBillboards[player] if billboard then billboard:Destroy() espBillboards[player] = nil end end local function updateESP() for , player in ipairs(Players:GetPlayers()) do if player ~= LocalPlayer then if player.Character then createBillboard(player) else removeBillboard(player) end end end end local function createHitText(head) local billboard = Instance.new("BillboardGui") billboard.Size = UDim2.new(0, 100, 0, 30) billboard.Adornee = head billboard.AlwaysOnTop = true billboard.Parent = head local text = Instance.new("TextLabel") text.Size = UDim2.new(1, 0, 1, 0) text.BackgroundTransparency = 1 text.Text = "HIT!" text.TextColor3 = Color3.fromRGB(255, 50, 50) text.TextScaled = true text.Font = Enum.Font.GothamBold text.Parent = billboard game:GetService("Debris"):AddItem(billboard, 0.5) end local function isTargetValid(player) if not player or not player.Character then return false end local humanoid = player.Character:FindFirstChild("Humanoid") if not humanoid or humanoid.Health <= 0 then return false end local head = player.Character:FindFirstChild("Head") or player.Character:FindFirstChild("UpperTorso") if not head then return false end local cameraCF = Camera.CFrame local cameraPos = cameraCF.Position local targetPos = head.Position local direction = (targetPos - cameraPos).unit local dot = cameraCF.LookVector:Dot(direction) local angle = math.acos(dot) return angle <= math.rad(100) end local function getClosestEnemy() local closest = nil local closestAngle = math.rad(90) local cameraCF = Camera.CFrame local cameraPos = cameraCF.Position for , player in ipairs(Players:GetPlayers()) do if player ~= LocalPlayer and player.Character and player.Character:FindFirstChild("Humanoid") and player.Character.Humanoid.Health > 0 then local head = player.Character:FindFirstChild("Head") or player.Character:FindFirstChild("UpperTorso") if head then local targetPos = head.Position local direction = (targetPos - cameraPos).unit local dot = cameraCF.LookVector:Dot(direction) local angle = math.acos(dot) if angle < closestAngle then closestAngle = angle closest = player end end end end return closest end Players.PlayerAdded:Connect(function(player) if player ~= LocalPlayer then player.CharacterAdded:Connect(function() createBillboard(player) end) player.CharacterRemoving:Connect(function() removeBillboard(player) end) if player.Character then createBillboard(player) end end end) Players.PlayerRemoving:Connect(removeBillboard) for , player in ipairs(Players:GetPlayers()) do if player ~= LocalPlayer and player.Character then createBillboard(player) end end RunService.RenderStepped:Connect(function() updateESP() if UserInputService:IsMouseButtonPressed(aimbotKey) then local targetValid = currentTarget and isTargetValid(currentTarget) if targetValid then targetLostCounter = 0 local head = currentTarget.Character:FindFirstChild("Head") or currentTarget.Character:FindFirstChild("UpperTorso") if head then Camera.CFrame = CFrame.lookAt(Camera.CFrame.Position, head.Position) end else targetLostCounter = targetLostCounter + 1 if targetLostCounter >= TARGETLOST_THRESHOLD then currentTarget = nil targetLostCounter = 0 end end if not currentTarget then local newTarget = getClosestEnemy() if newTarget then currentTarget = newTarget targetLostCounter = 0 local head = currentTarget.Character:FindFirstChild("Head") or currentTarget.Character:FindFirstChild("UpperTorso") if head then Camera.CFrame = CFrame.lookAt(Camera.CFrame.Position, head.Position) end end end else currentTarget = nil targetLostCounter = 0 end end) UserInputService.InputBegan:Connect(function(input, gameProcessed) if gameProcessed then return end if input.UserInputType == shootKey and currentTarget then local now = tick() if now - lastShootTime > 0.2 then lastShootTime = now hitSound:Play() local head = currentTarget.Character:FindFirstChild("Head") or currentTarget.Character:FindFirstChild("UpperTorso") if head then createHitText(head) end end end end)
что делать?

По дате
По рейтингу
Аватар пользователя
user_315293830Ученик
4мес

вот пишет ошибку

Аватар пользователя
user_315293830Ученик
4мес

тоесть у меня мелкие скрипты не работают а огроменые работают



Видео по теме