Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
- local Window = Rayfield:CreateWindow({
- Name = "MM2 Saftig V1",
- LoadingTitle = "MM2 Exploits",
- LoadingSubtitle = "by SaftigCraftig",
- ConfigurationSaving = {
- Enabled = false,
- FolderName = nil, -- Create a custom folder for your hub/game
- FileName = "Big Hub"
- },
- Discord = {
- Enabled = false,
- Invite = "CDXtAMer", -- 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 = false, -- Set this to true to use our key system
- KeySettings = {
- Title = "Untitled",
- Subtitle = "Key System",
- Note = "No method of obtaining the key is provided",
- FileName = "Key", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file
- SaveKey = true, -- 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 = {"Hello"} -- List of keys that will be accepted by the system, can be RAW file links (pastebin, github etc) or simple strings ("hello","key22")
- }
- })
- local Tab = Window:CreateTab("Basic hacks", nil) -- Title, Image
- local Section = Tab:CreateSection("$hit on your victims")
- local Button = Tab:CreateButton({
- Name = "GodMode π",
- Callback = function()
- local Player = game.Players.LocalPlayer
- local Character = Player.Character
- local Humanoid = Character.Humanoid
- print('Godmode working.')
- Humanoid.MaxHealth = 999999
- Humanoid.Health = Humanoid.MaxHealth / 2
- Humanoid.HealthChanged:connect(function()
- if Humanoid.Health < 10 then
- Humanoid.Health = Humanoid.MaxHealth
- end
- end)
- end,
- })
- local Button = Tab:CreateButton({
- Name = "Speed Note: This will reset after every round β‘",
- Callback = function()
- _G.WS = "188";
- local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
- Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
- Humanoid.WalkSpeed = _G.WS;
- end)
- Humanoid.WalkSpeed = _G.WS;
- end,
- })
- local Button = Tab:CreateButton({
- Name = "Inf Jump | Note: This wont toggle. β¬οΈ",
- Callback = function()
- local InfiniteJumpEnabled = true
- game:GetService("UserInputService").JumpRequest:connect(function()
- if InfiniteJumpEnabled then
- game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
- end
- end)
- game.StarterGui:SetCore("SendNotification", {
- Title = "Infinite Jumps ";
- Text = "Made by SaftigCraftig"; -- what the text says (ofc)
- Duration = 30;
- })
- wait(1)
- game.StarterGui:SetCore("SendNotification", {
- Title = "Enjoy";
- Text = "Don't Forget to Subscribe SaftigCraftig"; -- what the text says (ofc)
- Duration = 7;
- })
- end,
- })
- local Button = Tab:CreateButton({
- Name = "Fly GUI ",
- Callback = function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/XNEOFF/FlyGuiV3/main/FlyGuiV3.txt"))()
- end,
- })
- local Button = Tab:CreateButton({
- Name = "Infinte yield βΎοΈπ§",
- Callback = function()
- loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
- end,
- })
- local Tab = Window:CreateTab("Troll :> And other Scripts", nil) -- Title, Image
- local Section = Tab:CreateSection("Fling & more")
- local Button = Tab:CreateButton({
- Name = "Troll touch someone to fling π€£",
- Callback = function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/0Ben1/fe./main/Fling%20GUI"))()
- end,
- })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement