Advertisement
Zwiebelle1301706

Untitled

Mar 25th, 2024
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.03 KB | None | 0 0
  1. local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
  2.  
  3. local Window = Rayfield:CreateWindow({
  4.    Name = "MM2 Saftig V1",
  5.    LoadingTitle = "MM2 Exploits",
  6.    LoadingSubtitle = "by SaftigCraftig",
  7.    ConfigurationSaving = {
  8.       Enabled = false,
  9.       FolderName = nil, -- Create a custom folder for your hub/game
  10.       FileName = "Big Hub"
  11.    },
  12.    Discord = {
  13.       Enabled = false,
  14.       Invite = "CDXtAMer", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ABCD would be ABCD
  15.       RememberJoins = false -- 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("Basic hacks", nil) -- Title, Image
  30. local Section = Tab:CreateSection("$hit on your victims")
  31.  
  32. local Button = Tab:CreateButton({
  33.    Name = "GodMode  πŸ˜ˆ",
  34.    Callback = function()
  35.       local Player = game.Players.LocalPlayer
  36.       local Character = Player.Character
  37.       local Humanoid = Character.Humanoid
  38.        
  39.       print('Godmode working.')
  40.        
  41.       Humanoid.MaxHealth = 999999
  42.       Humanoid.Health = Humanoid.MaxHealth / 2
  43.        
  44.       Humanoid.HealthChanged:connect(function()
  45.           if Humanoid.Health < 10 then
  46.               Humanoid.Health = Humanoid.MaxHealth
  47.           end
  48.       end)  
  49.    end,
  50. })
  51.  
  52. local Button = Tab:CreateButton({
  53.    Name = "Speed Note: This will reset after every round ⚑",
  54.    Callback = function()
  55.       _G.WS = "188";
  56.       local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  57.       Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  58.       Humanoid.WalkSpeed = _G.WS;
  59.       end)
  60.       Humanoid.WalkSpeed = _G.WS;
  61.    end,
  62. })
  63.  
  64. local Button = Tab:CreateButton({
  65.    Name = "Inf Jump | Note: This wont toggle. ⬆️",
  66.    Callback = function()
  67.       local InfiniteJumpEnabled = true
  68.       game:GetService("UserInputService").JumpRequest:connect(function()
  69.           if InfiniteJumpEnabled then
  70.               game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  71.           end
  72.       end)
  73.        
  74.       game.StarterGui:SetCore("SendNotification", {
  75.           Title = "Infinite Jumps ";
  76.           Text = "Made by SaftigCraftig"; -- what the text says (ofc)
  77.           Duration = 30;
  78.       })
  79.       wait(1)
  80.       game.StarterGui:SetCore("SendNotification", {
  81.           Title = "Enjoy";
  82.           Text = "Don't Forget to Subscribe SaftigCraftig"; -- what the text says (ofc)
  83.           Duration = 7;
  84.       })
  85.    end,
  86. })
  87.  
  88. local Button = Tab:CreateButton({
  89.    Name = "Fly GUI ",
  90.    Callback = function()
  91.       loadstring(game:HttpGet("https://raw.githubusercontent.com/XNEOFF/FlyGuiV3/main/FlyGuiV3.txt"))()
  92.  
  93.    end,
  94. })
  95.  
  96. local Button = Tab:CreateButton({
  97.    Name = "Infinte yield β™ΎοΈπŸ§™",
  98.    Callback = function()
  99.       loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  100.    end,
  101. })
  102.  
  103. local Tab = Window:CreateTab("Troll :> And other Scripts", nil) -- Title, Image
  104. local Section = Tab:CreateSection("Fling & more")
  105.  
  106. local Button = Tab:CreateButton({
  107.    Name = "Troll  touch someone to fling 🀣",
  108.    Callback = function()
  109.       loadstring(game:HttpGet("https://raw.githubusercontent.com/0Ben1/fe./main/Fling%20GUI"))()
  110.  
  111.    end,
  112. })
  113.  
  114.  
  115.  
  116.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement