ControlC
· Pastebin
Login
Register
ControlC
/
Create paste
Paste content
Up to 100 KB of text. BBCode formatting is supported.
Title
- optional
Content
B
I
U
S
</>
Colors ↓
Sizes ↓
Size 1
Size 2
Size 3
Size 4
Size 5
Size 6
Size 7
-- default settings\r\n_G.AutoBlock = true -- blocks most incoming hits but may also block your hits.\r\n_G.InfEnergy = true\r\n_G.NoCooldown = true -- works for some things like you can spam ryan's right click.\r\n\r\nspawn(function()\r\na = hookfunction(wait, function(b) if b ~= 0 and tostring(getcallingscript(a)) ~= \"nil\" and tonumber(b) < 2.5 and _G.NoCooldown == true then return a() end return a(b) end)\r\nend)\r\n\r\nspawn(function()\r\nlocal function CreateInstance(cls,props)\r\nlocal inst = Instance.new(cls)\r\nfor i,v in pairs(props) do\r\n inst[i] = v\r\nend\r\nreturn inst\r\nend\r\n \r\nlocal ScreenGui = CreateInstance('ScreenGui',{DisplayOrder=0,Enabled=true,ResetOnSpawn=true,Name='ScreenGui', Parent=game.CoreGui})\r\nlocal Frame = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0, 0, 0),BackgroundTransparency=1,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0.717395179, 0, 0.219242901, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 531, 0, 267),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'Frame',Parent = ScreenGui})\r\nlocal AutoBlock = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='Toggle Auto Block (Default)',TextColor3=Color3.new(0.792157, 0.792157, 0.792157),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0, 0, 0),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 50),Rotation=0,Selectable=true,Size=UDim2.new(0, 170, 0, 50),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='Script1',Parent = Frame})\r\nlocal InfEnergy = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='Toggle Infinite Energy (Default)',TextColor3=Color3.new(0.792157, 0.792157, 0.792157),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0, 0, 0),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 105),Rotation=0,Selectable=true,Size=UDim2.new(0, 170, 0, 50),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='Script2',Parent = Frame})\r\nlocal NoCooldown = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='Toggle No Cooldown (Default)',TextColor3=Color3.new(0.792157, 0.792157, 0.792157),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0, 0, 0),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 160),Rotation=0,Selectable=true,Size=UDim2.new(0, 170, 0, 50),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='Script3',Parent = Frame})\r\nScreenGui.Parent = game:GetService(\"CoreGui\")\r\n\r\nspawn(function()\r\nwait(0.2)\r\nif _G.AutoBlock then AutoBlock.Text = \"Toggle Auto Block (On)\" else AutoBlock.Text = \"Toggle Auto Block (Off)\" end\r\nif _G.InfEnergy then InfEnergy.Text = \"Toggle Infinite Energy (On)\" else InfEnergy.Text = \"Toggle Infinite Energy (Off)\" end\r\nif _G.NoCooldown then NoCooldown.Text = \"Toggle No Cooldown (On)\" else NoCooldown.Text = \"Toggle No Cooldown (Off)\" end\r\nend)\r\n\r\nAutoBlock.MouseButton1Click:Connect(function()\r\nif _G.AutoBlock == true then _G.AutoBlock = false AutoBlock.Text = \"Toggle Auto Block (Off)\" elseif _G.AutoBlock == false then _G.AutoBlock = true AutoBlock.Text = \"Toggle Auto Block (On)\" end\r\nend)\r\n\r\nInfEnergy.MouseButton1Click:Connect(function()\r\nif _G.InfEnergy == true then _G.InfEnergy = false InfEnergy.Text = \"Toggle Infinite Energy (Off)\" elseif _G.InfEnergy == false then _G.InfEnergy = true InfEnergy.Text = \"Toggle Infinite Energy (On)\" end\r\nend)\r\n\r\nNoCooldown.MouseButton1Click:Connect(function()\r\nif _G.NoCooldown == true then _G.NoCooldown = false NoCooldown.Text = \"Toggle No Cooldown (Off)\" elseif _G.NoCooldown == false then _G.NoCooldown = true NoCooldown.Text = \"Toggle No Cooldown (On)\" end\r\nend)\r\nend)\r\n\r\nname = tostring(game.Players.LocalPlayer.Name)\r\ngame:GetService(\"RunService\").Heartbeat:Connect(function()\r\nspawn(function()\r\nif _G.AutoBlock == true then\r\nwait()\r\ngame:GetService(\"ReplicatedStorage\").RemoteEvents.ReplicateGuardOn:FireServer()\r\ngame:GetService(\"Workspace\")[name].Guarding.Value = false\r\nwait()\r\ngame:GetService(\"ReplicatedStorage\").RemoteEvents.ReplicateGuardOff:FireServer()\r\nend\r\nend)\r\n\r\nspawn(function()\r\nif _G.InfEnergy then\r\ngame:GetService(\"Workspace\")[name].Energy.Value = 97\r\nend\r\nend)\r\nend)
Password
Anyone with the link will still need this password to view.
Expires
1 hour
3 hours
6 hours
12 hours
24 hours
48 hours
72 hours
Sign in to enable "Never expires".
Create paste
Please verify you are human
Cancel