Find any script for Roblox

Enter the name of the game or script.

Legacy of Krypton script: INF Stat Points

More Legacy of Krypton Scripts code icon


Fly like Superman across Metropolis, soar through outer space, and explore new planets in Legacy of Krypton, an epic open-world flying game! Unleash your heat vision, unlock incredible superpowers, and battle evil villains to defend the galaxy. With infinite stat points, you can instantly max out your abilities, dominating high-speed flight, epic space battles, and every threat to the city with godlike power.

Game link: Legacy of Krypton

Table of Contents
    Lua
    
    local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
    
    getgenv().CustomPointsAmount = -10000  -- Default starting value
    
    local Window = Rayfield:CreateWindow({
       Name = "Sandman's Legacy Of Krypton | Stat Points ⚠️",
       LoadingTitle = "Loading Custom Stat Points...",
       LoadingSubtitle = "by Mr.Sandman - ALT ONLY",
       ConfigurationSaving = {
          Enabled = true,
          FolderName = "SandManHub",
          FileName = "Krypton_StatPoints"
       },
       KeySystem = false
    })
    
    local MainTab = Window:CreateTab("Stat Points", 4483362458)
    
    -- Slider: Negative values only (-1 to -1,000,000)
    MainTab:CreateSlider({
       Name = "Inf Stat Points (-1m is higher than -1)",
       Range = {-1000000, -1},          -- From -1,000,000 to -1
       Increment = 1000,                -- Step by 1,000 for easier sliding
       Suffix = " Points",
       CurrentValue = -10000,           -- Starts at a moderate negative
       Flag = "StatPointsAmount",
       Callback = function(Value)
          getgenv().CustomPointsAmount = Value
          Rayfield:Notify({
             Title = "Amount Updated",
             Content = "Set to: " .. Value .. " (more negative = bigger overflow)",
             Duration = 3
          })
       end,
    })
    
    -- Apply button
    MainTab:CreateButton({
       Name = "Apply to combatDamage",
       Callback = function()
          pcall(function()
             local args = {
                "Add",
                "combatDamage",
                getgenv().CustomPointsAmount
             }
             game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("ChangeValue"):FireServer(unpack(args))
          end)
          Rayfield:Notify({
             Title = "Fired!",
             Content = "Sent " .. getgenv().CustomPointsAmount .. " to combatDamage",
             Duration = 4,
             Image = 4483362458
          })
       end,
    })
    
    -- Quick exit
    MainTab:CreateButton({
       Name = "Destroy GUI",
       Callback = function()
          task.wait(1)
          Rayfield:Destroy()
       end,
    })
    
    Rayfield:Notify({
       Title = "Loaded - Negative Stat Points",
       Content = "Slide (more negative = stronger) → Apply • ALT account recommended",
       Duration = 5,
       Image = 4483362458
    })
      

    Script Features:

    • INF Stat Points – Grants an unlimited number of stat points to allocate.
    • Script developer: TheSandMan


    How to use Legacy of Krypton script?


    Important information:

    • All scripts are free.
    • All scripts are safe to use.
    • We do not have viruses or malware.

    Leave a Comment

    Your email address will not be published. Required fields are marked *