Advertisement
Yfytydutyrd

Vgggdhd

Nov 28th, 2023 (edited)
937
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 20.82 KB | None | 0 0
  1. shared.RavenB4Started = true -- REQUIRED!!!!!!
  2. shared.RavenConfigName = 'MistWare' --Whatever your Config name is!
  3. shared.WaterMark = "MistWare"
  4. shared.WaterMarkColor = Color3.fromRGB(196, 73, 209)
  5. --shared.RavenBlacklist = {"ahsf-ghjfk-ijrh-rtes-3thr"} you have to put a HWID of a player in this Whitelist Table to Whitelist them!
  6. --shared.RavenWhitelist = {"ahsf-ghjfk-ijrh-rtes-3thr"} you have to put a HWID of a player in this Blacklist Table to blacklist them!
  7.  
  8. local RavenConfig = loadstring(game:HttpGet('https://raw.githubusercontent.com/goinglikeatrainlol/RavenB4Roblox/main/Raven%20Main%20Loader'))()
  9. RavenConfig:createnotification("MistWare Loaded!",5)
  10. local Players = game:GetService("Players")
  11. local lplr = Players.LocalPlayer
  12. local gameCamera = game:GetService("Workspace").CurrentCamera
  13. Utility:CreateToggle({
  14.     Name = "InfiniteJump",
  15.     Callback = function(Callback)
  16.         if Callback then
  17.         end
  18.         game:GetService("UserInputService").JumpRequest:Connect(function()
  19.             local localPlayer = game:GetService("Players").LocalPlayer
  20.             local character = localPlayer.Character
  21.             if character and character:FindFirstChildOfClass("Humanoid") then
  22.                 local humanoid = character:FindFirstChildOfClass("Humanoid")
  23.                 humanoid:ChangeState("Jumping")
  24.             end
  25.         end)  
  26. end})
  27. Utility:CreateToggle({
  28.     Name = "MW disabler",
  29.         Callback = function(Callback)
  30.             if callback then
  31.                 SendNotify = true
  32.                 NoDisable = true
  33.                 task.spawn(function()
  34.                     repeat
  35.                         task.wait()
  36.                         RenderSteppedConnection = game:GetService("RunService").RenderStepped:Connect(getRenderStepped)
  37.                         HeartbeatConnection = game:GetService("RunService").Heartbeat:Connect(getHeartBeat)
  38.                         local item = getItemNear("scythe")
  39.                         repeat task.wait() until item
  40.                         if item and lplr.Character.HandInvItem.Value == item.tool and bedwars.CombatController then
  41.                             if DisablerMode.Value == "MoveDirection" then
  42.                                 if DisablerSpeed.Enabled then
  43.                                     bedwars.ClientHandler:Get("ScytheDash"):SendToServer({
  44.                                         direction = lplr.Character.HumanoidRootPart.CFrame.MoveDirection * DisablerTable.Values.MainSpeed
  45.                                     })
  46.                                 else
  47.                                     bedwars.ClientHandler:Get("ScytheDash"):SendToServer({
  48.                                         direction = lplr.Character.HumanoidRootPart.CFrame.MoveDirection
  49.                                     })
  50.                                 end
  51.                             elseif DisablerMode.Value == "LookVector" then
  52.                                 if DisablerSpeed.Enabled then
  53.                                     bedwars.ClientHandler:Get("ScytheDash"):SendToServer({
  54.                                         direction = lplr.Character.HumanoidRootPart.CFrame.LookVector * DisablerTable.Values.MainSpeed
  55.                                     })
  56.                                 else
  57.                                     bedwars.ClientHandler:Get("ScytheDash"):SendToServer({
  58.                                         direction = lplr.Character.HumanoidRootPart.CFrame.LookVector
  59.                                     })
  60.                                 end
  61.                             end
  62.                             if entityLibrary.isAlive and entityLibrary.character.Head.Transparency ~= 0 then
  63.                                 bedwarsStore.scythe = tick() + 1
  64.                             end
  65.                         elseif item and lplr.Character.HandInvItem.Value ~= item.tool and bedwars.CombatController then
  66.                             if SendNotify then
  67.                                 if DisablerNotify.Value == "Vape" then
  68.                                     warningNotification(DisablerTable.Messages.Title,DisablerTable.Messages.Context1,DisablerTable.Values.Duration)
  69.                                 elseif DisablerNotify.Value == "Print" then
  70.                                     print(DisablerTable.Messages.Context3)
  71.                                 elseif DisablerNotify.Value == "Warn" then
  72.                                     warn(DisablerTable.Messages.Context3)
  73.                                 elseif DisablerNotify.Value == "Combined" then
  74.                                     warningNotification(DisablerTable.Messages.Title,DisablerTable.Messages.Context1,DisablerTable.Values.Duration)
  75.                                     print(DisablerTable.Messages.Context3)
  76.                                     warn(DisablerTable.Messages.Context3)
  77.                                 end
  78.                                 SendNotify = false
  79.                             end
  80.                             if DisablerMissing.Value == "Continue" then
  81.                                 task.wait(DisablerTable.Values.Duration)
  82.                                 SendNotify = true
  83.                                 NoDisable = true
  84.                             elseif DisablerMissing.Value == "Disable" then
  85.                                 NoDisable = false
  86.                             end
  87.                             if not NoDisable then
  88.                                 Disabler.ToggleButton(false)
  89.                                 return
  90.                             end
  91.                         elseif not item then
  92.                             if DisablerNotify.Value == "Vape" then
  93.                                 warningNotification(DisablerTable.Messages.Title,DisablerTable.Messages.Context2,DisablerTable.Values.Duration)
  94.                             elseif DisablerNotify.Value == "Print" then
  95.                                 print(DisablerTable.Messages.Context4)
  96.                             elseif DisablerNotify.Value == "Warn" then
  97.                                 warn(DisablerTable.Messages.Context4)
  98.                             elseif DisablerNotify.Value == "Combined" then
  99.                                 warningNotification(DisablerTable.Messages.Title,DisablerTable.Messages.Context2,DisablerTable.Values.Duration)
  100.                                 print(DisablerTable.Messages.Context4)
  101.                                 warn(DisablerTable.Messages.Context4)
  102.                             end
  103.                             Disabler.ToggleButton(false)
  104.                             return
  105.                         end
  106.                     until not Disabler.Enabled
  107.                 end)
  108.             else
  109.                 HeartbeatConnection:Disconnect()
  110.                 RenderSteppedConnection:Disconnect()
  111.             end
  112.         end
  113. Utility:CreateToggle({
  114.     Name = "Fly Loader",
  115.     Callback = function(Callback)
  116.         if Callback then
  117.             if game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then
  118.                 loadstring(game:HttpGet(('https://pastebin.com/raw/h5QDPy6s'),true))()
  119.                 RavenConfig:createnotification("Flight Should Be Loaded Enjoy! -TheRealRed",5)
  120.             end
  121.         end
  122. end})
  123. function IsAlive(plr)
  124.     plr = plr or lplr
  125.     if not plr.Character then return false end
  126.     if not plr.Character:FindFirstChild("Head") then return false end
  127.     if not plr.Character:FindFirstChild("Humanoid") then return false end
  128.     if plr.Character:FindFirstChild("Humanoid").Health < 0.11 then return false end
  129.     return true
  130. end
  131. local AnimationPlayer = {Enabled = false}
  132. local AnimationPlayerBox = {Value = "11335949902"}
  133. local AnimationPlayerSpeed = {Speed = 1}
  134. local playedanim
  135. Utility:CreateToggle({
  136.     Name = "InvisibleExploit",
  137.     Callback = function(Callback)
  138.         if Callback then
  139.             if IsAlive(lplr) then
  140.                 if playedanim then
  141.                     playedanim:Stop()
  142.                     playedanim.Animation:Destroy()
  143.                     playedanim = nil
  144.                 end
  145.                 local anim = Instance.new("Animation")
  146.                 local suc, id = pcall(function() return string.match(game:GetObjects("rbxassetid://"..AnimationPlayerBox.Value)[1].AnimationId, "%?id=(%d+)") end)
  147.                 if not suc then
  148.                     id = AnimationPlayerBox.Value
  149.                 end
  150.                 anim.AnimationId = "rbxassetid://"..id
  151.                 local suc, res = pcall(function() playedanim = lplr.character.Humanoid.Animator:LoadAnimation(anim) end)
  152.                 if suc then
  153.                     lplr.Character.Humanoid.CameraOffset = Vector3.new(0, 3 / -2, 0)
  154.                     lplr.Character.HumanoidRootPart.Size = Vector3.new(2, 3, 1.1)
  155.                    
  156.                     playedanim.Priority = Enum.AnimationPriority.Action4
  157.                     playedanim.Looped = true
  158.                     playedanim:Play()
  159.                     playedanim:AdjustSpeed(0 / 10)
  160.                     table.insert(AnimationPlayer.Connections, playedanim.Stopped:Connect(function()
  161.                         if AnimationPlayer.Enabled then
  162.                             AnimationPlayer.ToggleButton(false)
  163.                             AnimationPlayer.ToggleButton(false)
  164.                         end
  165.                     end))
  166.                 else
  167.                     RavenConfig:createnotification("failed to load anim : "..(res or "invalid animation id"),5)
  168.                 end
  169.             end
  170.             table.insert(AnimationPlayer.Connections, lplr.CharacterAdded:Connect(function()
  171.                 repeat task.wait() until IsAlive(lplr)
  172.                 task.wait(0.5)
  173.                 if playedanim then
  174.                     playedanim:Stop()
  175.                     playedanim.Animation:Destroy()
  176.                     playedanim = nil
  177.                 end
  178.                 local anim = Instance.new("Animation")
  179.                 local suc, id = pcall(function() return string.match(game:GetObjects("rbxassetid://"..AnimationPlayerBox.Value)[1].AnimationId, "%?id=(%d+)") end)
  180.                 if not suc then
  181.                     id = AnimationPlayerBox.Value
  182.                 end
  183.                 anim.AnimationId = "rbxassetid://"..id
  184.                 local suc, res = pcall(function() playedanim = lplr.character.Humanoid.Animator:LoadAnimation(anim) end)
  185.                 if suc then
  186.                     playedanim.Priority = Enum.AnimationPriority.Action4
  187.                     playedanim.Looped = true
  188.                     playedanim:Play()
  189.                     playedanim:AdjustSpeed(AnimationPlayerSpeed.Value / 10)
  190.                     playedanim.Stopped:Connect(function()
  191.                         if AnimationPlayer.Enabled then
  192.                             AnimationPlayer.ToggleButton(false)
  193.                             AnimationPlayer.ToggleButton(false)
  194.                         end
  195.                     end)
  196.                 else
  197.                     RavenConfig:createnotification("failed to load anim : "..(res or "invalid animation id"),5)
  198.                 end
  199.             end))
  200.         else
  201.             if playedanim then playedanim:Stop() playedanim = nil end
  202.         end
  203.     end
  204. })
  205. GodMode = Utility:CreateToggle({
  206.     Name = "GodMode",
  207.     Callback = function(Callback)
  208.         if Callback then
  209.             spawn(function()
  210.                 while task.wait() do
  211.                         for i, v in pairs(game:GetService("Players"):GetChildren()) do
  212.                             if v.Team ~= lplr.Team and IsAlive(v) and IsAlive(lplr) then
  213.                                 if v and v ~= lplr then
  214.                                     local TargetDistance = lplr:DistanceFromCharacter(v.Character:FindFirstChild("HumanoidRootPart").CFrame.p)
  215.                                     if TargetDistance < 25 then
  216.                                         if not lplr.Character.HumanoidRootPart:FindFirstChildOfClass("BodyVelocity") then
  217.                                             if not (v.Character.HumanoidRootPart.Velocity.Y < -10*5) then
  218.                                                 lplr.Character.Archivable = true
  219.        
  220.                                                 local Clone = lplr.Character:Clone()
  221.                                                 Clone.Parent = workspace
  222.                                                 Clone.Head:ClearAllChildren()
  223.                                                 gameCamera.CameraSubject = Clone:FindFirstChild("Humanoid")
  224.            
  225.                                                 for i,v in pairs(Clone:GetChildren()) do
  226.                                                     if string.lower(v.ClassName):find("part") and v.Name ~= "HumanoidRootPart" then
  227.                                                         v.Transparency = 1
  228.                                                     end
  229.                                                     if v:IsA("Accessory") then
  230.                                                         v:FindFirstChild("Handle").Transparency = 1
  231.                                                     end
  232.                                                 end
  233.            
  234.                                                 lplr.Character.HumanoidRootPart.CFrame = lplr.Character.HumanoidRootPart.CFrame + Vector3.new(0,100000,0)
  235.            
  236.                                                 game:GetService("RunService").RenderStepped:Connect(function()
  237.                                                     if Clone ~= nil and Clone:FindFirstChild("HumanoidRootPart") then
  238.                                                         Clone.HumanoidRootPart.Position = Vector3.new(lplr.Character.HumanoidRootPart.Position.X, Clone.HumanoidRootPart.Position.Y, lplr.Character.HumanoidRootPart.Position.Z)
  239.                                                     end
  240.                                                 end)
  241.            
  242.                                                 task.wait(0.3)
  243.                                                 lplr.Character.HumanoidRootPart.Velocity = Vector3.new(lplr.Character.HumanoidRootPart.Velocity.X, -1, lplr.Character.HumanoidRootPart.Velocity.Z)
  244.                                                 lplr.Character.HumanoidRootPart.CFrame = Clone.HumanoidRootPart.CFrame
  245.                                                 gameCamera.CameraSubject = lplr.Character:FindFirstChild("Humanoid")
  246.                                                 Clone:Destroy()
  247.                                                 task.wait(0.15)
  248.                                             end
  249.                                         end
  250.                                     end
  251.                                 end
  252.                             end
  253.                         end
  254.                     end
  255.             end)
  256.         end
  257.     end
  258. })
  259. Utility:CreateToggle({
  260.     Name = "4BigGuysFastExploitV4",
  261.     StartingState = true,
  262.     Callback = function(Callback)
  263.         if Callback then
  264.             task.spawn(function()
  265.                 repeat
  266.                     task.wait()
  267.                     local args = {
  268.                 [1] = {
  269.                     ["weapon"] = game:GetService("ReplicatedStorage"):WaitForChild("Inventories"):WaitForChild("lplr.Name"):WaitForChild("mythic_gauntlets"),
  270.                     ["chargeRatio"] = 0
  271.                 }
  272.             }
  273.  
  274.                 game:GetService("ReplicatedStorage"):WaitForChild("rbxts_include"):WaitForChild("node_modules"):WaitForChild("@rbxts"):WaitForChild("net"):WaitForChild("out"):WaitForChild("_NetManaged"):WaitForChild("SwordSwingMiss"):FireServer(unpack(args))
  275.                 until not Callback
  276.             end)
  277.         end
  278.     end
  279. })
  280. Render:CreateToggle({
  281.     Name = "Myistic 32x", -- "Made by 4zze with love for MysticwWare <3"
  282.     Callback = function(Callback)
  283.         if Callback then
  284.         RavenConfig:createnotification("Pack loaded! Reequip your weapon to see textures.",5)
  285.         local Players = game:GetService("Players")
  286.         local ReplicatedStorage = game:GetService("ReplicatedStorage")
  287.         local Workspace = game:GetService("Workspace")
  288.         local objs = game:GetObjects("rbxassetid://15073101583")
  289.         local import = objs[1]
  290.         import.Parent = ReplicatedStorage
  291.         local index = {
  292.             {
  293.                 name = "wood_sword",
  294.                 offset = CFrame.Angles(math.rad(0), math.rad(-89), math.rad(-90)),
  295.                 model = import:WaitForChild("Wood_Sword"),
  296.             }, 
  297.             {
  298.                 name = "stone_sword",
  299.                 offset = CFrame.Angles(math.rad(0), math.rad(-89), math.rad(-90)),
  300.                 model = import:WaitForChild("Stone_Sword"),
  301.             },
  302.             {
  303.                 name = "iron_sword",
  304.                 offset = CFrame.Angles(math.rad(0), math.rad(-89), math.rad(-90)),
  305.                 model = import:WaitForChild("Iron_Sword"),
  306.             },
  307.             {
  308.                 name = "diamond_sword",
  309.                 offset = CFrame.Angles(math.rad(0), math.rad(-89), math.rad(-90)),
  310.                 model = import:WaitForChild("Diamond_Sword"),
  311.             },
  312.             {
  313.                 name = "emerald_sword",
  314.                 offset = CFrame.Angles(math.rad(0), math.rad(-89), math.rad(-90)),
  315.                 model = import:WaitForChild("Emerald_Sword"),
  316.             },
  317.             {
  318.                 name = "wood_scythe",
  319.                 offset = CFrame.Angles(math.rad(0),math.rad(89),math.rad(-90)),
  320.                 model = import:WaitForChild("Wood_Scythe"),
  321.             },
  322.             {
  323.                 name = "stone_scythe",
  324.                 offset = CFrame.Angles(math.rad(0),math.rad(89),math.rad(-90)),
  325.                 model = import:WaitForChild("Stone_Scythe"),
  326.             },
  327.             {
  328.                 name = "iron_scythe",
  329.                 offset = CFrame.Angles(math.rad(0),math.rad(89),math.rad(-90)),
  330.                 model = import:WaitForChild("Iron_Scythe"),
  331.             },
  332.             {
  333.                 name = "diamond_scythe",
  334.                 offset = CFrame.Angles(math.rad(0),math.rad(89),math.rad(-90)),
  335.                 model = import:WaitForChild("Diamond_Scythe"),
  336.             },
  337.             {
  338.                 name = "diamond",
  339.                 offset = CFrame.Angles(math.rad(0), math.rad(-90), math.rad(90)),
  340.                 model = import:WaitForChild("Diamond"),
  341.             },
  342.             {
  343.                 name = "iron",
  344.                 offset = CFrame.Angles(math.rad(0), math.rad(-90), math.rad(90)),
  345.                 model = import:WaitForChild("Iron"),
  346.             },
  347.             {
  348.                 name = "emerald",
  349.                 offset = CFrame.Angles(math.rad(0), math.rad(-90), math.rad(90)),
  350.                 model = import:WaitForChild("Emerald"),
  351.             },
  352. }
  353.         local func = Workspace.Camera.Viewmodel.ChildAdded:Connect(function(tool)  
  354.             if not tool:IsA("Accessory") then return end   
  355.             for _, v in ipairs(index) do   
  356.                 if v.name == tool.Name then    
  357.                     for _, part in ipairs(tool:GetDescendants()) do
  358.                         if part:IsA("BasePart") or part:IsA("MeshPart") or part:IsA("UnionOperation") then             
  359.                             part.Transparency = 1
  360.                         end        
  361.                     end    
  362.                     local model = v.model:Clone()
  363.                     model.CFrame = tool:WaitForChild("Handle").CFrame * v.offset
  364.                     model.CFrame *= CFrame.Angles(math.rad(0), math.rad(-50), math.rad(0))
  365.                     model.Parent = tool        
  366.                     local weld = Instance.new("WeldConstraint", model)
  367.                     weld.Part0 = model
  368.                     weld.Part1 = tool:WaitForChild("Handle")           
  369.                     local tool2 = Players.LocalPlayer.Character:WaitForChild(tool.Name)        
  370.                     for _, part in ipairs(tool2:GetDescendants()) do
  371.                         if part:IsA("BasePart") or part:IsA("MeshPart") or part:IsA("UnionOperation") then             
  372.                             part.Transparency = 1              
  373.                         end        
  374.                     end        
  375.                     local model2 = v.model:Clone()
  376.                     model2.Anchored = false
  377.                     model2.CFrame = tool2:WaitForChild("Handle").CFrame * v.offset
  378.                     model2.CFrame *= CFrame.Angles(math.rad(0), math.rad(-50), math.rad(0))
  379.                     if v.name:match("rageblade") then
  380.                         model2.CFrame *= CFrame.new(0.7, 0, -1)                          
  381.                     elseif v.name:match("sword") or v.name:match("blade") then
  382.                         model2.CFrame *= CFrame.new(.6, 0, -1.1) - Vector3.new(0, 0, -.3)
  383.                     elseif v.name:match("axe") and not v.name:match("pickaxe") and v.name:match("diamond") then
  384.                         model2.CFrame *= CFrame.new(.08, 0, -1.1) - Vector3.new(0, 0, -1.1)
  385.                     elseif v.name:match("axe") and not v.name:match("pickaxe") and not v.name:match("diamond") then
  386.                         model2.CFrame *= CFrame.new(-.2, 0, -2.4) + Vector3.new(0, 0, 2.12)
  387.                     elseif v.name:match("scythe") then
  388.                         model2.CFrame *= CFrame.new(-1.15, 0.2, -2.1)
  389.                     elseif v.name:match("iron") then
  390.                         model2.CFrame *= CFrame.new(0, -.24, 0)
  391.                     elseif v.name:match("gold") then
  392.                         model2.CFrame *= CFrame.new(0, .03, 0)
  393.                     elseif v.name:match("diamond") then
  394.                         model2.CFrame *= CFrame.new(0, .027, 0)
  395.                     elseif v.name:match("emerald") then
  396.                         model2.CFrame *= CFrame.new(0, .001, 0)
  397.                     elseif v.name:match("telepearl") then
  398.                         model2.CFrame *= CFrame.new(.1, 0, .1)
  399.                     elseif v.name:match("bow") and not v.name:match("crossbow") then
  400.                         model2.CFrame *= CFrame.new(-.29, .1, -.2)
  401.                     elseif v.name:match("wood_crossbow") and not v.name:match("tactical_crossbow") then
  402.                         model2.CFrame *= CFrame.new(-.6, 0, 0)
  403.                     elseif v.name:match("tactical_crossbow") and not v.name:match("wood_crossbow") then
  404.                         model2.CFrame *= CFrame.new(-.5, 0, -1.2)
  405.                     else
  406.                         model2.CFrame *= CFrame.new(.2, 0, -.2)
  407.                     end
  408.                     model2.Parent = tool2
  409.                     local weld2 = Instance.new("WeldConstraint", model)
  410.                     weld2.Part0 = model2
  411.                     weld2.Part1 = tool2:WaitForChild("Handle")
  412.                 end
  413.             end
  414.         end)  
  415.     end        
  416. end})
  417. shared.RavenB4Completed = true --- REQUIRED!!!!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement