local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "☄️ Cosmic | Universal ", LoadingTitle = "☄️ Loading Cosmic Hub...", LoadingSubtitle = "by Trackhawk and Zowlyy", ConfigurationSaving = { Enabled = true, FolderName = CosmicHubIs2Op, -- Create a custom folder for your hub/game FileName = "Cosmic Hub Is 2 Gud" }, DServicesiscord = { Enabled = true, Invite = "9RXFYN7gVT", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ABCD would be ABCD RememberJoins = true -- Set this to false to make them join the discord every time they load it up }, KeySystem = true, -- Set this to true to use our key system KeySettings = { Title = "Key | Cosmic Hub", Subtitle = "Key System", Note = "You can find the key in here discord.gg/9RXFYN7gVT", FileName = "CosmicHubKeySystem", -- 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 = true, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from Key = {"https://pastebin.com/raw/nfFka8pf"} -- List of keys that will be accepted by the system, can be RAW file links (pastebin, github etc) or simple strings ("hello","key22") } }) local MainTab = Window:CreateTab("🏠 Home", nil) -- Title, Image local MainSection = MainTab:CreateSection("Main") Rayfield:Notify({ Title = "☄️ Cosmic Hub", Content = "Thank you for using Cosmic Hub!", Duration = 5, Image = 13047715178, Actions = { -- Notification Buttons Ignore = { Name = "Okay!", Callback = function() print("The user tapped Okay!") end }, }, }) local Slider = MainTab:CreateSlider({ Name = "WalkSpeed Slider", Range = {1, 350}, Increment = 1, Suffix = "Speed", CurrentValue = 16, Flag = "sliderws", -- 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 Callback = function(Value) game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = (Value) end, }) local Slider = MainTab:CreateSlider({ Name = "JumpPower Slider", Range = {1, 350}, Increment = 1, Suffix = "Speed", CurrentValue = 16, Flag = "sliderjp", -- 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 Callback = function(Value) game.Players.LocalPlayer.Character.Humanoid.JumpPower = (Value) end, }) local Input = MainTab:CreateInput({ Name = "Walkspeed", PlaceholderText = "1-500", RemoveTextAfterFocusLost = true, Callback = function(Text) game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = (Text) end, }) local ExploitsTab = Window:CreateTab("🌐 Universal", nil) -- Title, Image local ExploitsSection = ExploitsTab:CreateSection("Main") local Button184 = ExploitsTab:CreateButton({ Name = "ESP", Callback = function() --[[ WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! ]] --//Toggle\\-- getgenv().Toggle = true -- This toggles the esp, turning it to false will turn it off getgenv().TC = false -- This toggles team check, turning it on will turn on team check local PlayerName = "Name" -- You can decide if you want the Player's name to be a display name which is "DisplayName", or username which is "Name" --//Variables\\-- local P = game:GetService("Players") local LP = P.LocalPlayer --//Debounce\\-- local DB = false --//Notification\\-- game.StarterGui:SetCore("SendNotification", { Title = "Notification", Text = "This Script Was Made By Trackhawkv12" , Button1 = "Ok", Button2 = "Shut Up", Duration = math.huge }) --//Loop\\-- while task.wait() do if not getgenv().Toggle then break end if DB then return end DB = true pcall(function() for i,v in pairs(P:GetChildren()) do if v:IsA("Player") then if v ~= LP then if v.Character then local pos = math.floor(((LP.Character:FindFirstChild("HumanoidRootPart")).Position - (v.Character:FindFirstChild("HumanoidRootPart")).Position).magnitude) -- Credits to Infinite Yield for this part (pos) ^^^^^^ if v.Character:FindFirstChild("Totally NOT Esp") == nil and v.Character:FindFirstChild("Icon") == nil and getgenv().TC == false then --//ESP-Highlight\\-- local ESP = Instance.new("Highlight", v.Character) ESP.Name = "Totally NOT Esp" ESP.Adornee = v.Character ESP.Archivable = true ESP.Enabled = true ESP.DepthMode = Enum.HighlightDepthMode.AlwaysOnTop ESP.FillColor = v.TeamColor.Color ESP.FillTransparency = 0.5 ESP.OutlineColor = Color3.fromRGB(255, 255, 255) ESP.OutlineTransparency = 0 --//ESP-Text\\-- local Icon = Instance.new("BillboardGui", v.Character) local ESPText = Instance.new("TextLabel") Icon.Name = "Icon" Icon.ZIndexBehavior = Enum.ZIndexBehavior.Sibling Icon.Active = true Icon.AlwaysOnTop = true Icon.ExtentsOffset = Vector3.new(0, 1, 0) Icon.LightInfluence = 1.000 Icon.Size = UDim2.new(0, 800, 0, 50) ESPText.Name = "ESP Text" ESPText.Parent = Icon ESPText.BackgroundColor3 = v.TeamColor.Color ESPText.BackgroundTransparency = 1.000 ESPText.Size = UDim2.new(0, 800, 0, 50) ESPText.Font = Enum.Font.SciFi ESPText.Text = v[PlayerName].." | Distance: "..pos ESPText.TextColor3 = v.TeamColor.Color ESPText.TextSize = 18.000 ESPText.TextWrapped = true else if v.TeamColor ~= LP.TeamColor and v.Character:FindFirstChild("Totally NOT Esp") == nil and v.Character:FindFirstChild("Icon") == nil and getgenv().TC == true then --//ESP-Highlight\\-- local ESP = Instance.new("Highlight", v.Character) ESP.Name = "Totally NOT Esp" ESP.Adornee = v.Character ESP.Archivable = true ESP.Enabled = true ESP.DepthMode = Enum.HighlightDepthMode.AlwaysOnTop ESP.FillColor = v.TeamColor.Color ESP.FillTransparency = 0.5 ESP.OutlineColor = Color3.fromRGB(255, 255, 255) ESP.OutlineTransparency = 0 --//ESP-Text\\-- local Icon = Instance.new("BillboardGui", v.Character) local ESPText = Instance.new("TextLabel") Icon.Name = "Icon" Icon.ZIndexBehavior = Enum.ZIndexBehavior.Sibling Icon.Active = true Icon.AlwaysOnTop = true Icon.ExtentsOffset = Vector3.new(0, 1, 0) Icon.LightInfluence = 1.000 Icon.Size = UDim2.new(0, 800, 0, 50) ESPText.Name = "ESP Text" ESPText.Parent = Icon ESPText.BackgroundColor3 = v.TeamColor.Color ESPText.BackgroundTransparency = 1.000 ESPText.Size = UDim2.new(0, 800, 0, 50) ESPText.Font = Enum.Font.SciFi ESPText.Text = v[PlayerName].." | Distance: "..pos ESPText.TextColor3 = v.TeamColor.Color ESPText.TextSize = 18.000 ESPText.TextWrapped = true else if not v.Character:FindFirstChild("Totally NOT Esp").FillColor == v.TeamColor.Color and not v.Character:FindFirstChild("Icon").TextColor3 == v.TeamColor.Color then v.Character:FindFirstChild("Totally NOT Esp").FillColor = v.TeamColor.Color v.Character:FindFirstChild("Icon").TextColor3 = v.TeamColor.Color else if v.Character:FindFirstChild("Totally NOT Esp").Enabled == false and v.Character:FindFirstChild("Icon").Enabled == false then v.Character:FindFirstChild("Totally NOT Esp").Enabled = true v.Character:FindFirstChild("Icon").Enabled = true else if v.Character:FindFirstChild("Icon") then v.Character:FindFirstChild("Icon")["ESP Text"].Text = v[PlayerName].." | Distance: "..pos end end end end end end end end end end) wait() DB = false end end, }) local Button1 = ExploitsTab:CreateButton({ Name = "Fly", Callback = function() loadstring("\108\111\97\100\115\116\114\105\110\103\40\103\97\109\101\58\72\116\116\112\71\101\116\40\40\39\104\116\116\112\115\58\47\47\103\105\115\116\46\103\105\116\104\117\98\117\115\101\114\99\111\110\116\101\110\116\46\99\111\109\47\109\101\111\122\111\110\101\89\84\47\98\102\48\51\55\100\102\102\57\102\48\97\55\48\48\49\55\51\48\52\100\100\100\54\55\102\100\99\100\51\55\48\47\114\97\119\47\101\49\52\101\55\52\102\52\50\53\98\48\54\48\100\102\53\50\51\51\52\51\99\102\51\48\98\55\56\55\48\55\52\101\98\51\99\53\100\50\47\97\114\99\101\117\115\37\50\53\50\48\120\37\50\53\50\48\102\108\121\37\50\53\50\48\50\37\50\53\50\48\111\98\102\108\117\99\97\116\111\114\39\41\44\116\114\117\101\41\41\40\41\10\10")() end, }) local Button7 = ExploitsTab:CreateButton({ Name = "MortalV2 Aim Lock", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/yzeedw/Mortalv2-main/main/UNIVERSAL%20AIMBOT"))() end, }) local Button8 = ExploitsTab:CreateButton({ Name = "Noclip Tool", Callback = function() local Noclip = Instance.new("HopperBin") Noclip.BinType = Enum.BinType.Script Noclip.Name = "Noclip" Noclip.Parent = game.Players.LocalPlayer.Backpack local function ORNE_fake_script() -- ScreenGui.NoclipScript (@CloneTrooper1019) local script = Instance.new('LocalScript', Noclip) script.Name = "NoclipScript" local c = workspace.CurrentCamera local player = game.Players.LocalPlayer local userInput = game:GetService("UserInputService") local rs = game:GetService("RunService") local starterPlayer = game:GetService("StarterPlayer") local selected = false local speed = 60 local lastUpdate = 0 function getNextMovement(deltaTime) local nextMove = Vector3.new() if userInput:IsKeyDown("A") or userInput:IsKeyDown("Left") then nextMove = Vector3.new(-1,0,0) elseif userInput:IsKeyDown("D") or userInput:IsKeyDown("Right") then nextMove = Vector3.new(1,0,0) end if userInput:IsKeyDown("W") or userInput:IsKeyDown("Up") then nextMove = nextMove + Vector3.new(0,0,-1) elseif userInput:IsKeyDown("S") or userInput:IsKeyDown("Down") then nextMove = nextMove + Vector3.new(0,0,1) end if userInput:IsKeyDown("Space") then nextMove = nextMove + Vector3.new(0,1,0) elseif userInput:IsKeyDown("LeftControl") then nextMove = nextMove + Vector3.new(0,-1,0) end return CFrame.new( nextMove * (speed * deltaTime) ) end function onSelected() local char = player.Character if char then local humanoid = char:WaitForChild("Humanoid") local root = char:WaitForChild("HumanoidRootPart") currentPos = root.Position selected = true root.Anchored = true lastUpdate = tick() humanoid.PlatformStand = true while selected do wait() local delta = tick()-lastUpdate local look = (c.Focus.p-c.CoordinateFrame.p).unit local move = getNextMovement(delta) local pos = root.Position root.CFrame = CFrame.new(pos,pos+look) * move lastUpdate = tick() end root.Anchored = false root.Velocity = Vector3.new() humanoid.PlatformStand = false end end function onDeselected() selected = false end script.Parent.Selected:connect(onSelected) script.Parent.Deselected:connect(onDeselected) end coroutine.wrap(ORNE_fake_script)() end, }) local ButtonNig = ExploitsTab:CreateButton({ Name = "Teleport Tool", Callback = function() mouse = game.Players.LocalPlayer:GetMouse() tool = Instance.new("Tool") tool.RequiresHandle = false tool.Name = "Teleporter" tool.ToolTip = "Equip + click = tp" tool.Activated:connect(function() local pos = mouse.Hit+Vector3.new(0,2.5,0) pos = CFrame.new(pos.X,pos.Y,pos.Z) game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos end) tool.Parent = game.Players.LocalPlayer.Backpack end, }) local TPTab = Window:CreateTab("🔫 North London", nil) -- Title, Image local TPSection = TPTab:CreateSection("Visual") local Button = TPTab:CreateButton({ Name = "Big Heads", Callback = function() for _, player in pairs(game.Players:GetPlayers()) do local char = player.Character if char and char:FindFirstChild("Head") then char.Head.Size = Vector3.new(6, 6, 6) -- Makes the head huge char.Head.Transparency = 0.6 end end end, }) local TRPSection = TPTab:CreateSection("Player") local Button1 = TPTab:CreateButton({ Name = "Skittles Speed", Callback = function() game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 24 end, }) local BABFTTab = Window:CreateTab("🛶 Build A Boat", nil) -- Title, Image local BABFTSection = BABFTTab:CreateSection("Main") local Button1 = BABFTTab:CreateButton({ Name = "Auto Farm V1", Callback = function() local args = { [1] = true } workspace.RefreshLocks:FireServer(unpack(args)) noclip = false game:GetService('RunService').Stepped:connect(function() if noclip then game.Players.LocalPlayer.Character.Humanoid:ChangeState(11) end end) noclip = not noclip game.Players.LocalPlayer.Character.Humanoid:ChangeState(11) local Character = game:GetService('Players').LocalPlayer.Character wait(3) game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-69.0208588, 108.308792, 644.431091)) wait(1) local CFrameEnd = CFrame.new(-41.7870445, 77.1494141, 8675.35059) -- Place your coords in here local Time = 33-- Time in seconds local tween = game:GetService("TweenService"):Create(game.Players.LocalPlayer.Character.HumanoidRootPart, TweenInfo.new(Time), {CFrame = CFrameEnd}) tween:Play() tween.Completed:Wait(X) --- Completes, no need for additional wait time game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-63.2413521, -357.34967, 8819.09277)) wait(0.5) local CFrameEnd = CFrame.new(-55.8801956, -361.116333, 9488.1377) -- Place your coords in here local Time = 0 -- Time in seconds local tween = game:GetService("TweenService"):Create(game.Players.LocalPlayer.Character.HumanoidRootPart, TweenInfo.new(Time), {CFrame = CFrameEnd}) tween:Play() tween.Completed:Wait(X) game.Players.LocalPlayer.CharacterAdded:Connect(function() wait(3) game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-69.0208588, 108.308792, 644.431091)) wait(1) local CFrameEnd = CFrame.new(-41.7870445, 77.1494141, 8675.35059) -- Place your coords in here local Time = 33-- Time in seconds local tween = game:GetService("TweenService"):Create(game.Players.LocalPlayer.Character.HumanoidRootPart, TweenInfo.new(Time), {CFrame = CFrameEnd}) tween:Play() tween.Completed:Wait(X) --- Completes, no need for additional wait time game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-63.2413521, -357.34967, 8819.09277)) wait(0.5) local CFrameEnd = CFrame.new(-55.8801956, -361.116333, 9488.1377) -- Place your coords in here local Time = 0 -- Time in seconds local tween = game:GetService("TweenService"):Create(game.Players.LocalPlayer.Character.HumanoidRootPart, TweenInfo.new(Time), {CFrame = CFrameEnd}) tween:Play() tween.Completed:Wait(X) end) for i=1, math.huge do wait(200) game.Players.LocalPlayer.Character.Head:Destroy() end end, }) local SKYWARSTab = Window:CreateTab("⚔️ Skywars Classic", nil) -- Title, Image local SWSection = SKYWARSTab:CreateSection("Teleport") local Button = SKYWARSTab:CreateButton({ Name = "VIP Zone", Callback = function() game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-0.35152342915534973, 177.4999542236328, -70.39562225341797) end, }) local Button1 = SKYWARSTab:CreateButton({ Name = "Mega VIP Zone", Callback = function() game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-0.12956447899341583, 177.4889678955078, 68.58148193359375) end, }) local Button1 = SKYWARSTab:CreateButton({ Name = "Middle Island", Callback = function() game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(7.483887195587158, 82.4987564086914, -1.462747573852539) end, }) local FischTab = Window:CreateTab("🐟 Fisch", nil) -- Title, Image local FischSection = FischTab:CreateSection("Main") local Button = FischTab:CreateButton({ Name = "Auto Farm", Callback = function() local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/Turtle-Brand/Turtle-Lib/main/source.lua"))() local window = library:Window("🐟 FISCH AUTO FARM") window:Button("Enable Auto Farm", function() local Players = game:GetService('Players') local CoreGui = game:GetService('StarterGui') local GuiService = game:GetService('GuiService') local ReplicatedStorage = game:GetService('ReplicatedStorage') local ContextActionService = game:GetService('ContextActionService') local VirtualInputManager = game:GetService('VirtualInputManager') local UserInputService = game:GetService('UserInputService') local LocalPlayer = Players.LocalPlayer local Enabled = false local Rod = false local Casted = false local Progress = false local Finished = false local LoopPosition local Keybind = Enum.KeyCode.X function ShowNotification(String) CoreGui:SetCore('SendNotification', { Title = 'Auto Farm', Text = String, Duration = 1 }) end function ToggleFarm(Name, State, Input) if State == Enum.UserInputState.Begin then Enabled = not Enabled if Enabled then LoopPosition = LocalPlayer.Character.HumanoidRootPart.Position else Finished = false Progress = false GuiService.SelectedObject = nil if Rod then Rod.events.reset:FireServer() end end ShowNotification(`Status: {Enabled}`) end end LocalPlayer.Character.ChildAdded:Connect(function(Child) if Child:IsA('Tool') and Child.Name:lower():find('rod') then Rod = Child end end) LocalPlayer.Character.ChildRemoved:Connect(function(Child) if Child == Rod then Enabled = false Finished = false Progress = false Rod = nil GuiService.SelectedObject = nil end end) LocalPlayer.PlayerGui.DescendantAdded:Connect(function(Descendant) if Enabled then if Descendant.Name == 'button' and Descendant.Parent.Name == 'safezone' then task.wait(0.3) GuiService.SelectedObject = Descendant VirtualInputManager:SendKeyEvent(true, Enum.KeyCode.Return, false, game) VirtualInputManager:SendKeyEvent(false, Enum.KeyCode.Return, false, game) task.wait(0.1) GuiService.SelectedObject = nil elseif Descendant.Name == 'playerbar' and Descendant.Parent.Name == 'bar' then Finished = true Descendant:GetPropertyChangedSignal('Position'):Wait() ReplicatedStorage.events.reelfinished:FireServer(100, true) end end end) LocalPlayer.PlayerGui.DescendantRemoving:Connect(function(Descendant) if Descendant.Name == 'reel' then Finished = false Progress = false end end) task.spawn(function() while true do if Enabled and not Progress then if Rod then Progress = true task.wait(0.5) Rod.events.reset:FireServer() Rod.events.cast:FireServer(100.5) end end task.wait() end end) task.spawn(function() while true do if Enabled then LocalPlayer.Character.HumanoidRootPart.Position = LoopPosition end task.wait(0.75) end end) local NewRod = LocalPlayer.Character:FindFirstChildWhichIsA('Tool') if NewRod and NewRod.Name:lower():find('rod') then Rod = NewRod end if not UserInputService.KeyboardEnabled then ContextActionService:BindAction('ToggleFarm', ToggleFarm, false, Keybind, Enum.UserInputType.Touch) ContextActionService:SetTitle('ToggleFarm', 'Toggle Farm') ContextActionService:SetPosition('ToggleFarm', UDim2.new(0.9, -50, 0.9, -150)) ShowNotification('Press the onscreen button to enable/disable') else ContextActionService:BindAction('ToggleFarm', ToggleFarm, false, Keybind) ShowNotification(`Press '{Keybind.Name}' to enable/disable`) end end) window:Label("X - ON/OFF", Color3.fromRGB(127, 143, 166)) window:Label("Hold Rod to Auto Farm", Color3.fromRGB(127, 143, 166)) window:Label("☄️ Cosmic Hub", Color3.fromRGB(327, 343, 366)) end, }) local Button1 = FischTab:CreateButton({ Name = "Auto Appraise", Callback = function() local Tool = game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool").Name while true do if game.Players.LocalPlayer.Character:FindFirstChild(Tool) then workspace.world.npcs.Appraiser.appraiser.appraise:InvokeServer() task.wait() elseif game.Players.LocalPlayer.Backpack:FindFirstChild(Tool) then game.Players.LocalPlayer.Backpack:FindFirstChild(Tool).Parent = game.Players.LocalPlayer.Character else print("No Tool Found Anywhere - Stopping Dupe - gg/crhtZcGCHB") wait(1000000) end end end, }) local FischTwoSection = FischTab:CreateSection("Teleport") local Button1 = FischTab:CreateButton({ Name = "Moosewood", Callback = function() game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(385.2424621582031, 135.97256469726562, 246.93963623046875) end, }) local Button2 = FischTab:CreateButton({ Name = "Roslit Bay", Callback = function() game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1453.7320556640625, 134.74539184570312, 725.0736083984375) end, }) local Button3 = FischTab:CreateButton({ Name = "Forsaken Shore", Callback = function() game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2674.22998046875, 172.8752899169922, 1741.9481201171875) end, }) local Button4 = FischTab:CreateButton({ Name = "Desolate Deep", Callback = function() game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1516.7073974609375, -231.45643615722656, -2848.870361328125) end, }) local Button5 = FischTab:CreateButton({ Name = "Tridents Temple", Callback = function() game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1481.7032470703125, -224.74252319335938, -2244.253662109375) end, }) local Button6 = FischTab:CreateButton({ Name = "Grand Reef", Callback = function() game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-3576.284912109375, 152.53366088867188, 523.2101440429688) end, }) local PrisonTab = Window:CreateTab("🚓 Prison Life", nil) -- Title, Image local PrisonSection = PrisonTab:CreateSection("Main") local Button1 = PrisonTab:CreateButton({ Name = "Tiger Admin", Callback = function() loadstring(game:HttpGet('https://rawscripts.net/raw/Prison-Life-Tiger-Admin-V3-16127'))() end, }) local BallTab = Window:CreateTab("🏀 Blade Ball", nil) -- Title, Image local BallSection = BallTab:CreateSection("Main") local Button1 = BallTab:CreateButton({ Name = "Hit Macro", Callback = function() local RunService = game:GetService("RunService") or game:FindFirstDescendant("RunService") local Players = game:GetService("Players") or game:FindFirstDescendant("Players") local VirtualInputManager = game:GetService("VirtualInputManager") or game:FindFirstDescendant("VirtualInputManager") local Player = Players.LocalPlayer local Cooldown = tick() local IsParried = false local Connection = nil local function GetBall() for _, Ball in ipairs(workspace.Balls:GetChildren()) do if Ball:GetAttribute("realBall") then return Ball end end end local function ResetConnection() if Connection then Connection:Disconnect() Connection = nil end end workspace.Balls.ChildAdded:Connect(function() local Ball = GetBall() if not Ball then return end ResetConnection() Connection = Ball:GetAttributeChangedSignal("target"):Connect(function() Parried = false end) end) RunService.PreSimulation:Connect(function() local Ball, HRP = GetBall(), Player.Character.HumanoidRootPart if not Ball or not HRP then return end local Speed = Ball.zoomies.VectorVelocity.Magnitude local Distance = (HRP.Position - Ball.Position).Magnitude if Ball:GetAttribute("target") == Player.Name and not Parried and Distance / Speed <= 0.55 then VirtualInputManager:SendMouseButtonEvent(0, 0, 0, true, game, 0) Parried = true Cooldown = tick() if (tick() - Cooldown) >= 1 then Partied = false end end end) end, }) local MonkeyTab = Window:CreateTab("😡 Rivals", nil) -- Title, Image local MonkeySection = MonkeyTab:CreateSection("Main") local Button1 = MonkeyTab:CreateButton({ Name = "Silent Aim", Callback = function() local Players = game:GetService("Players") local localPlayer = Players.LocalPlayer local camera = workspace.CurrentCamera local mouse = localPlayer:GetMouse() local wtvp = camera.WorldToViewportPoint local function getClosestPlayerHead() local target local distance = math.huge for i, v in ipairs(Players.GetPlayers(Players)) do if v == localPlayer or not v.Character then continue end local character = v.Character if character.FindFirstChild(character, "Head") then local head = character.Head local headPos, onScreen = wtvp(camera, head.Position) if onScreen then local mouseDist = (Vector2.new(mouse.X, mouse.Y) - Vector2.new(headPos.X, headPos.Y)).Magnitude if mouseDist < distance then distance = mouseDist target = head end end end end return target end local old; old = hookmetamethod(game, "__namecall", function(...) local method = getnamecallmethod() local args = {...} local callingScript = getcallingscript() if (method == "Raycast") and (tostring(callingScript) == "Equipment" or tostring(callingScript) == "FighterController" or tostring(callingScript) == "PlayerDataController" or tostring(callingScript) == "ControlsController") then args[2] = camera.CFrame.Position args[3] = (getClosestPlayerHead().Position - args[2]).Unit * 1000 end return old(unpack(args)) end) end, }) local MiscTab = Window:CreateTab("🎲 Misc", nil) -- Title, Image local MiscSection = MiscTab:CreateSection("Scripts") local Button1 = MiscTab:CreateButton({ Name = "Infinite Yield", Callback = function() loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))() end, }) local Button = MiscTab:CreateButton({ Name = "Remove All Textures", Callback = function() for _, obj in ipairs(game:GetDescendants()) do if obj:IsA("Texture") or obj:IsA("Decal") then obj:Destroy() end if obj:IsA("BasePart") then obj.Material = Enum.Material.SmoothPlastic end end end, }) local SkibidiSection = MiscTab:CreateSection("Trolling") local Button1 = MiscTab:CreateButton({ Name = "Jerk Off", Callback = function() loadstring(game:HttpGet('https://rawscripts.net/raw/Universal-Script-jerk-off-25958'))() end, }) local MiscccSection = MiscTab:CreateSection("Credits") local Buttonmm = MiscTab:CreateButton({ Name = "Join the Community", Callback = function() setclipboard("https://discord.gg/crhtZcGCHB") Rayfield:Notify({ Title = "☄️ Cosmic Hub", Content = "Discord Server link has been copied!", Duration = 6.5, Image = 124144713366592, }) end, })