Advertisement
Guest User

sword fight and flex your time reach script

a guest
Jul 20th, 2022
477
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.87 KB | None | 0 0
  1.  
  2. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))() local Window = OrionLib:MakeWindow({Name = "Vincent's Skillz Hub", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"}) local Combat = Window:MakeTab({ Name = "Combat", Icon = "rbxassetid://4483345998", PremiumOnly = false }) local Misc = Window:MakeTab({ Name = "Misc", Icon = "rbxassetid://4483345998", PremiumOnly = false }) Misc:AddButton({ Name = "Collect Orbs", Callback = function() for i, v in ipairs(game.Workspace.Orbs:GetChildren()) do tweenService, tweenInfo = game:GetService("TweenService"), TweenInfo.new(3, Enum.EasingStyle.Linear) tweenService:Create(game:GetService("Players")["LocalPlayer"].Character.HumanoidRootPart, tweenInfo, {CFrame = v.Core.CFrame}):Play() end end }) local reach = false local myToggle = Combat:AddToggle({ Name = "Sword Reach", Default = false, Callback = function(Value) reach = Value while reach == true do wait(1) game.Players.LocalPlayer.Backpack.Sword.Handle.Size = Vector3.new(70, 70, 70) end game.Players.LocalPlayer.Backpack.Sword.Handle.Size = Vector3.new(1, 0.800000011920929, 4) end }) local hitBoxExtend = false local hitBoxExtender = Combat:AddToggle({ Name = "Extend Hitboxes (May cause lag)", Default = false, Callback = function(Value) hitBoxExtend = Value while hitBoxExtend == true do wait(4) for i, v in ipairs(game.Players:GetChildren()) do if v.Name == game.Players.LocalPlayer.Name then continue end v.Character.HumanoidRootPart.Size = Vector3.new(10, 10, 10) v.Character.HumanoidRootPart.Color = Color3.new(255, 0, 0) v.Character.HumanoidRootPart.Transparency = 0.5 end end for i, v in ipairs(game.Players:GetChildren()) do if v.Name == game.Players.LocalPlayer.Name then continue end v.Character.HumanoidRootPart.Size = Vector3.new(2, 2, 1) v.Character.HumanoidRootPart.Transparency = 1 end end })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement