Roblox Evade OP SCRIPT!!! WORKING, NOT PACHED!! PASTEBIN
Roblox Evade OP SCRIPT!!! WORKING, NOT PACHED!! PASTEBIN
]]
game:GetService("ReplicatedStorage").Events.Revive.RevivePlayer:FireServer(tostring
(downedplr), false)
task.wait(4.5)
game:GetService("ReplicatedStorage").Events.Revive.RevivePlayer:FireServer(tostring
(downedplr), true)
game:GetService("ReplicatedStorage").Events.Revive.RevivePlayer:FireServer(tostring
(downedplr), true)
game:GetService("ReplicatedStorage").Events.Revive.RevivePlayer:FireServer(tostring
(downedplr), true)
break
end
end
end)
end
end
task.spawn(function()
while task.wait() do
if Settings.AutoRespawn then
if localplayer.Character and
localplayer.Character:GetAttribute("Downed") then
game:GetService("ReplicatedStorage").Events.Respawn:FireServer()
end
end
if Settings.NoCameraShake then
localplayer.PlayerScripts.CameraShake.Value = CFrame.new(0,0,0) *
CFrame.new(0,0,0)
end
if Settings.moneyfarm then
if localplayer.Character and
localplayer.Character:GetAttribute("Downed") then
game:GetService("ReplicatedStorage").Events.Respawn:FireServer()
task.wait(3)
else
revive()
task.wait(1)
end
end
if Settings.moneyfarm == false and Settings.afkfarm and
localplayer.Character:FindFirstChild('HumanoidRootPart') ~= nil then
localplayer.Character:FindFirstChild('HumanoidRootPart').CFrame =
CFrame.new(6007, 7005, 8005)
end
end
end)
function camerashake()
while NoCameraShake == true do task.wait()
localplayer.PlayerScripts.CameraShake.Value = CFrame.new(0,0,0) *
CFrame.new(0,0,0)
end
end
function autodrink()
while AutoDrink == true do
local ohString1 = "Cola"
game:GetService("ReplicatedStorage").Events.UseUsable:FireServer(ohString1)
wait(6)
end
end
function SpamChat()
while autochat == true do
local ohString1 = "Hydra Network on top"
local ohString2 = "All"
game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:
FireServer(ohString1, ohString2)
wait(1)
end
end
function autowistlefunction()
while autowistle == true do
local ohString1 = "Whistle"
local ohBoolean2 = true
game:GetService("Players").LocalPlayer.PlayerScripts.Events.KeybindUsed:Fire(ohStri
ng1, ohBoolean2)
game:GetService("ReplicatedStorage").Events.Whistle:FireServer()
wait(5)
end
end
function god()
while revivedie == true do
game:GetService("ReplicatedStorage").Events.Respawn:FireServer()
wait()
end
end
function dofullbright()
Light.Ambient = Color3.new(1, 1, 1)
Light.ColorShift_Bottom = Color3.new(1, 1, 1)
Light.ColorShift_Top = Color3.new(1, 1, 1)
game.Lighting.FogEnd = 100000
game.Lighting.FogStart = 0
game.Lighting.ClockTime = 14
game.Lighting.Brightness = 2
game.Lighting.GlobalShadows = false
end
function freemoney()
while money == true do
local ohString1 = "Free money <font
color=\"rgb(100,255,100)\">($99999)</font>"
game:GetService("Players").LocalPlayer.PlayerGui.HUD.Messages.Use:Fire(ohString1)
wait(5)
end
end
OrionLib:MakeNotification({
Name = "Welcome To Hydra Network",
Content = "Thanks for using Hydra Network!",
Image = "rbxassetid://4483345998",
Time = 5
})
function RandomEmote()
OrionLib:MakeNotification({
Name = "Random Emoting...",
Content = "You pressed the Random Emote keybind",
Image = "rbxassetid://4483345998",
Time = 5
})
end
--tabs
MainTab:AddToggle({
Name = "Money Farm",
Default = false,
Callback = function(Value)
Settings.moneyfarm = Value
end
})
MainTab:AddToggle({
Name = "Afk Farm",
Default = false,
Callback = function(Value)
Settings.afkfarm = Value
end
})
--sliders
local MainTab3 = MainTab:AddSection({
Name = "Sliders"
})
local TargetWalkspeed
MainTab:AddSlider({
Name = "Speed",
Min = 0,
Max = 250,
Default = 0,
Color = Color3.fromRGB(128, 128, 128),
Increment = 1,
ValueName = "Walk Speed",
Callback = function(Value)
TargetWalkspeed = Value
end
})
MainTab:AddSlider({
Name = "Hip height",
Min = -1.40,
Max = 100,
Default = -1.40,
Color = Color3.fromRGB(128, 128, 128),
Increment = 1,
ValueName = "Hip Height",
Callback = function(HipValue)
game.Players.LocalPlayer.Character.Humanoid.HipHeight = HipValue
end
})
MainTab:AddSlider({
Name = "Fov Slider",
Min = 1,
Max = 120,
Default = 70,
Color = Color3.fromRGB(128, 128, 128),
Increment = 1,
ValueName = "Fov",
Callback = function(Fov)
local ohString1 = "FieldOfView"
local ohNumber2 = Fov
game:GetService("ReplicatedStorage").Events.UpdateSetting:FireServer(ohString1,
ohNumber2)
end
})
MainTab:AddSlider({
Name = "Jump Power",
Min = 0,
Max = 120,
Default = 3,
Color = Color3.fromRGB(128, 128, 128),
Increment = 1,
ValueName = "Jump",
Callback = function(Value)
Settings.Jump = Value
end
})
MiscTab:AddSlider({
Name = "Day & night Slider",
Min = 0,
Max = 24,
Default = 14,
Color = Color3.fromRGB(128, 128, 128),
Increment = 0.1,
ValueName = "Time",
Callback = function(Time)
game.Lighting.ClockTime = Time
end
})
--toggles
MainTab:AddToggle({
Name = "No Camera Shake",
Default = false,
Callback = function(Value)
NoCameraShake = Value
camerashake()
end
})
MainTab:AddToggle({
Name = "Auto Drink Cola (drinks everytime it runs out)",
Default = false,
Callback = function(Value)
AutoDrink = Value
autodrink()
end
})
FunTab:AddToggle({
Name = "Spam Chat",
Default = false,
Callback = function(Value)
autochat = Value
SpamChat()
end
})
FunTab:AddToggle({
Name = "fake money giver",
Default = false,
Callback = function(Value)
money = Value
freemoney()
end
})
MainTab:AddToggle({
Name = "auto respawn (you respawn when you get downed)",
Default = false,
Callback = function(Value)
Settings.AutoRespawn = Value
end
})
FunTab:AddToggle({
Name = "Auto Wistle",
Default = false,
Callback = function(Value)
autowistle = Value
autowistlefunction()
end
})
--buttons
local FunTab3 = FunTab:AddSection({
Name = "Buttons"
})
MiscTab:AddButton({
Name = "Chat Spy",
Callback = function()
enabled = true
spyOnMyself = false
public = false
publicItalics = true
privateProperties = {
Color = Color3.fromRGB(0,255,255);
Font = Enum.Font.SourceSansBold;
TextSize = 18;
}
local StarterGui = game:GetService("StarterGui")
local Players = game:GetService("Players")
local player = Players.LocalPlayer
local saymsg =
game:GetService("ReplicatedStorage"):WaitForChild("DefaultChatSystemChatEvents"):Wa
itForChild("SayMessageRequest")
local getmsg =
game:GetService("ReplicatedStorage"):WaitForChild("DefaultChatSystemChatEvents"):Wa
itForChild("OnMessageDoneFiltering")
local instance = (_G.chatSpyInstance or 0) + 1
_G.chatSpyInstance = instance
StarterGui:SetCore("ChatMakeSystemMessage",privateProperties)
end
end
end
end
end
ESPTab:AddButton({
Name = "Player Esp",
Callback = function()
local c = workspace.CurrentCamera
local ps = game:GetService("Players")
local lp = ps.LocalPlayer
local rs = game:GetService("RunService")
local function getdistancefc(part)
return (part.Position - c.CFrame.Position).Magnitude
end
local function esp(p, cr)
local h = cr:WaitForChild("Humanoid")
local hrp = cr:WaitForChild("HumanoidRootPart")
local text = Drawing.new("Text")
text.Visible = false
text.Center = true
text.Outline = true
text.Font = 2
text.Color = Color3.fromRGB(255, 255, 255)
text.Size = 17
local c1
local c2
local c3
local function dc()
text.Visible = false
text:Remove()
if c1 then
c1:Disconnect()
c1 = nil
end
if c2 then
c2:Disconnect()
c2 = nil
end
if c3 then
c3:Disconnect()
c3 = nil
end
end
c2 =
cr.AncestryChanged:Connect(
function(_, parent)
if not parent then
dc()
end
end
)
c3 =
h.HealthChanged:Connect(
function(v)
if (v <= 0) or (h:GetState() ==
Enum.HumanoidStateType.Dead) then
dc()
end
end
)
c1 =
rs.RenderStepped:Connect(
function()
local hrp_pos, hrp_os =
c:WorldToViewportPoint(hrp.Position)
if hrp_os then
text.Position = Vector2.new(hrp_pos.X,
hrp_pos.Y)
text.Text = p.Name .. " (" ..
tostring(math.floor(getdistancefc(hrp))) .. " m)"
text.Visible = true
else
text.Visible = false
end
end
)
end
local function p_added(p)
if p.Character then
esp(p, p.Character)
end
p.CharacterAdded:Connect(
function(cr)
esp(p, cr)
end
)
end
for i, p in next, ps:GetPlayers() do
if p ~= lp then
p_added(p)
end
end
ps.PlayerAdded:Connect(p_added)
OrionLib:MakeNotification({
Name = "Hydra Network",
Content = "Pressed on the Player Esp Button",
Image = "rbxassetid://4483345998",
Time = 2
})
end
})
MiscTab:AddButton({
Name = "Inf Jump",
Callback = function()
local InfiniteJumpEnabled = true
game:GetService("UserInputService").JumpRequest:connect(function()
if InfiniteJumpEnabled then
game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':Chan
geState("Jumping")
end
end)
OrionLib:MakeNotification({
Name = "Hydra Network",
Content = "Pressed on the Inf Jump Button",
Image = "rbxassetid://4483345998",
Time = 2
})
end
})
MiscTab:AddButton({
Name = "Q to Teleport",
Callback = function()
plr = game.Players.LocalPlayer
hum = plr.Character.HumanoidRootPart
mouse = plr:GetMouse()
mouse.KeyDown:connect(function(key)
if key == "q" then
if mouse.Target then
hum.CFrame = CFrame.new(mouse.Hit.x, mouse.Hit.y + 5, mouse.Hit.z)
end
end
end)
OrionLib:MakeNotification({
Name = "Hydra Network",
Content = "Pressed on the Q To Teleport Button",
Image = "rbxassetid://4483345998",
Time = 2
})
end
})
MiscTab:AddButton({
Name = "Full Bright",
Callback = function()
dofullbright()
OrionLib:MakeNotification({
Name = "Hydra Network",
Content = "Pressed on the Full Bright Button",
Image = "rbxassetid://4483345998",
Time = 2
})
end
})
MiscTab:AddButton({
Name = "Return Too Main Menu",
Callback = function()
game:GetService("ReplicatedStorage").Events.ReturnToMenu:FireServer()
end
})
MiscTab:AddButton({
Name = "Low Quality",
Callback = function()
local ohString1 = "LowQuality"
local ohBoolean2 = true
game:GetService("ReplicatedStorage").Events.UpdateSetting:FireServer(ohString1,
ohBoolean2)
OrionLib:MakeNotification({
Name = "Hydra Network",
Content = "Pressed on the Low Quality Button",
Image = "rbxassetid://4483345998",
Time = 2
})
end
})
FunTab:AddButton({
Name = "Free cam (shift + P)",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/Robobo2022/
script/main/Freecam.lua"))()
OrionLib:MakeNotification({
Name = "Hydra Network",
Content = "Pressed on the Free cam Button",
Image = "rbxassetid://4483345998",
Time = 2
})
end
})
TeleportTab:AddButton({
Name = "Main Game",
Callback = function()
local TeleportService = game:GetService('TeleportService')
GameId = 9872472334
TeleportService:Teleport(GameId, game.Players.LocalPlayer)
end
})
TeleportTab:AddButton({
Name = "Casual",
Callback = function()
local TeleportService = game:GetService('TeleportService')
GameId = 10662542523
TeleportService:Teleport(GameId, game.Players.LocalPlayer)
end
})
TeleportTab:AddButton({
Name = "Social Space",
Callback = function()
local TeleportService = game:GetService('TeleportService')
GameId = 10324347967
TeleportService:Teleport(GameId, game.Players.LocalPlayer)
end
})
TeleportTab:AddButton({
Name = "Big Team",
Callback = function()
local TeleportService = game:GetService('TeleportService')
GameId = 10324346056
TeleportService:Teleport(GameId, game.Players.LocalPlayer)
end
})
TeleportTab:AddButton({
Name = "Team DeathMatch",
Callback = function()
local TeleportService = game:GetService('TeleportService')
GameId = 110539706691
TeleportService:Teleport(GameId, game.Players.LocalPlayer)
end
})
TeleportTab:AddButton({
Name = "Vc Only",
Callback = function()
local TeleportService = game:GetService('TeleportService')
GameId = 10808838353
TeleportService:Teleport(GameId, game.Players.LocalPlayer)
end
})
MiscTab:AddButton({
Name = "Test Emote (Permanant)",
Callback = function()
game:GetService("ReplicatedStorage").Events.UI.Purchase:InvokeServer("Emotes",
"Test")
end
})
--keybinds
MiscTab:AddBind({
Name = "Drink Cola",
Default = Enum.KeyCode.H,
Hold = false,
Callback = function()
local ohString1 = "Cola"
game:GetService("ReplicatedStorage").Events.UseUsable:FireServer(ohString1)
end
})
MiscTab:AddBind({
Name = "Rejoin Server",
Default = Enum.KeyCode.B,
Hold = false,
Callback = function()
OrionLib:MakeNotification({
Name = "You Pressed the Rejoin Keybind.",
Content = "Rejoining in 5 seconds",
Image = "rbxassetid://4483345998",
Time = 5
})
wait(1)
OrionLib:MakeNotification({
Name = "Hydra Network",
Content = "Rejoining in 4 seconds",
Image = "rbxassetid://4483345998",
Time = 5
})
wait(1)
OrionLib:MakeNotification({
Name = "Hydra Network",
Content = "Rejoining in 3 seconds",
Image = "rbxassetid://4483345998",
Time = 5
})
wait(1)
OrionLib:MakeNotification({
Name = "Hydra Network",
Content = "Rejoining in 2 seconds",
Image = "rbxassetid://4483345998",
Time = 5
})
wait(1)
OrionLib:MakeNotification({
Name = "Hydra Network",
Content = "Rejoining in 1 seconds",
Image = "rbxassetid://4483345998",
Time = 5
})
wait(1)
OrionLib:MakeNotification({
Name = "Hydra Network",
Content = "Rejoining",
Image = "rbxassetid://4483345998",
Time = 5
})
local ts = game:GetService("TeleportService")
local p = game:GetService("Players").LocalPlayer
ts:Teleport(game.PlaceId, p)
end
})
MiscTab:AddBind({
Name = "Random Vote",
Default = Enum.KeyCode.X,
Hold = false,
Callback = function()
local RandomVote = math.random(3)
local ohNumber1 = (RandomVote)
game:GetService("ReplicatedStorage").Events.Vote:FireServer(ohNumber1)
OrionLib:MakeNotification({
Name = "Hydra Network",
Content = "Pressed on the Random Vote Keybind",
Image = "rbxassetid://4483345998",
Time = 2
})
end
})
MiscTab:AddBind({
Name = "Respawn",
Default = Enum.KeyCode.R,
Hold = false,
Callback = function()
game:GetService("ReplicatedStorage").Events.Respawn:FireServer()
OrionLib:MakeNotification({
Name = "Respawning...",
Content = "You pressed the respawn keybind",
Image = "rbxassetid://4483345998",
Time = 5
})
end
})
FunTab:AddBind({
Name = "Random Emote",
Default = Enum.KeyCode.Z,
Hold = false,
Callback = function()
local number = math.random(4)
local ohString1 = (number)
game:GetService("ReplicatedStorage").Events.Emote:FireServer(ohString1)
RandomEmote()
end
})
--test
ESPTab:AddToggle({
Name = "Bots tracers",
Default = true,
Callback = function(Value)
getgenv().toggleespmpt = Value
end
})
ESPTab:AddColorpicker({
Name = "Colour",
Default = Color3.fromRGB(255, 255, 255),
Callback = function(Value)
getgenv().mptespcolour = Value
end
})
--credits
CreditsTab:AddParagraph("Owner/Main Dev","hydra#8270")
CreditsTab:AddParagraph("Credits","Felix and ss.spooky.ss")
CreditsTab:AddParagraph("Credits","xCLY And batusd")
CreditsTab:AddParagraph("Credits","Truncated Cuboctahedron")
getgenv().toggleespmpt = true
function esp(plr)
if game:GetService'Players':GetPlayerFromCharacter(plr) == nil then
local rat = Drawing.new("Line")
rs.RenderStepped:Connect(function()
if plr:FindFirstChild'HumanoidRootPart' then
local vector,screen =
cam:WorldToViewportPoint(plr.HumanoidRootPart.Position)
if screen then
rat.Visible = toggleespmpt
rat.From = Vector2.new(cam.ViewportSize.X /
2,cam.ViewportSize.Y / 1)
rat.To = Vector2.new(vector.X,vector.Y)
rat.Color = getgenv().mptespcolour
rat.Thickness = getgenv().mptespthickness
else
rat.Visible = false
end
else
pcall(function()
rat.Visible = false
end)
end
if not plr:FindFirstChild'HumanoidRootPart' or not
plr:FindFirstChild'HumanoidRootPart':IsDescendantOf(game:GetService'Workspace')
then
pcall(function()
rat:Remove()
end)
end
end)
end
end
local old
old = hookmetamethod(game,"__namecall",newcclosure(function(self,...)
local Args = {...}
local method = getnamecallmethod()
if tostring(self) == 'Communicator' and method == "InvokeServer" and Args[1] ==
"update" then
return Settings.Speed, Settings.Jump
end
return old(self,...)
end))
setclipboard("https://discord.gg/k9a4zym5uG")
OrionLib:MakeNotification({
Name = "Join Discord",
Content = "Join the Discord Copied in your clip Board",
Image = "rbxassetid://4483345998",
Time = 5
})
game:GetService("RunService").RenderStepped:Connect(function()
pcall(function()
if game.Players.LocalPlayer.Character.Humanoid.MoveDirection.Magnitude > 0
then
game.Players.LocalPlayer.Character:TranslateBy(game.Players.LocalPlayer.Character.H
umanoid.MoveDirection * TargetWalkspeed/100)
end
end)
end)
OrionLib:Init()