Advertisement
HaloJnZ

Incarcerated

May 25th, 2024 (edited)
640
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.98 KB | None | 0 0
  1. local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
  2.  
  3. local Window = Rayfield:CreateWindow({
  4.    Name = "Incarcerated | W.I.P",
  5.    LoadingTitle = "Incarcerated | Loading",
  6.    LoadingSubtitle = "Made by maylol1#8468",
  7.    ConfigurationSaving = {
  8.       Enabled = true,
  9.       FolderName = nil, -- Create a custom folder for your hub/game
  10.       FileName = "Universal Cheats | Incarcerated"
  11.    },
  12.    Discord = {
  13.       Enabled = true,
  14.       Invite = "AnDaX252yX", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ABCD would be ABCD
  15.       RememberJoins = true -- Set this to false to make them join the discord every time they load it up
  16.    },
  17.    KeySystem = false, -- Set this to true to use our key system
  18.    KeySettings = {
  19.       Title = "Untitled",
  20.       Subtitle = "Key System",
  21.       Note = "No method of obtaining the key is provided",
  22.       FileName = "Key", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file
  23.       SaveKey = true, -- The user's key will be saved, but if you change the key, they will be unable to use your script
  24.       GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
  25.       Key = {"Hello"} -- List of keys that will be accepted by the system, can be RAW file links (pastebin, github etc) or simple strings ("hello","key22")
  26.    }
  27. })
  28.  
  29. local Tab = Window:CreateTab("Aim Section", nil) -- Title, Image
  30. local MSection = Tab:CreateSection("Aim")
  31.  
  32. local Button = Tab:CreateButton({
  33.    Name = "Aimbot | Restart if you wanna stop aimbot",
  34.    Callback = function()
  35.             loadstring(game:HttpGet('https://pastebin.com/raw/6wCs182z'))()
  36.    end,
  37. })
  38.  
  39. local Button = Tab:CreateButton({
  40.    Name = "ESP | Click Q to toggle",
  41.    Callback = function()
  42.             loadstring(game:HttpGet('https://pastebin.com/raw/XYLZmaFs'))()
  43.    end,
  44. })
  45.  
  46. local Tab = Window:CreateTab("Miscellaneous", nil) -- Title, Image
  47. local MISection = Tab:CreateSection("Miscellaneous")
  48.  
  49. local Button = Tab:CreateButton({
  50.    Name = "Click V to teleport",
  51.    Callback = function()
  52.             loadstring(game:HttpGet('https://pastebin.com/raw/gHmJg6Zm'))()
  53.    end,
  54. })
  55.  
  56. local Button = Tab:CreateButton({
  57.    Name = "Fly | Click G to Toggle",
  58.    Callback = function()
  59.             loadstring(game:HttpGet('https://pastebin.com/raw/tZ3wTwyC'))()
  60.    end,
  61. })
  62.  
  63. local Button = Tab:CreateButton({
  64.    Name = "Infinite Jump",
  65.    Callback = function()
  66.             loadstring(game:HttpGet('https://pastebin.com/raw/3SF4d3k4'))()
  67.    end,
  68. })
  69.  
  70. local Slider = Tab:CreateSlider({
  71.    Name = "Walkspeed",
  72.    Range = {0, 300},
  73.    Increment = 1,
  74.    Suffix = "Walkspeed",
  75.    CurrentValue = 16,
  76.    Flag = "Slider1", -- 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
  77.    Callback = function(Value)
  78.             game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Value
  79.    end,
  80. })
  81.  
  82. local Slider = Tab:CreateSlider({
  83.    Name = "Jumppower",
  84.    Range = {0, 300},
  85.    Increment = 1,
  86.    Suffix = "Jumpower",
  87.    CurrentValue = 50,
  88.    Flag = "Slider1", -- 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
  89.    Callback = function(Value)
  90.             game.Players.LocalPlayer.Character.Humanoid.JumpPower = Value
  91.    end,
  92. })
  93.  
  94. local Tab = Window:CreateTab("Other", nil) -- Title, Image
  95. local OSection = Tab:CreateSection("Other/Credits")
  96.  
  97. local Label = Tab:CreateLabel("All credits goes to maylol1#8468")
  98.  
  99. local Paragraph = Tab:CreateParagraph({Title = "How did i come on this idea?", Content = "Ive come to realise that there are so many people looking for universal hubs which look clean and do work. Ive been inspired by that and using that inspiration ive made Incarcerated. Make sure to join the discord server! (https://discord.gg/EAwAhB2mqr)"})
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement