Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
- local Window = OrionLib:MakeWindow({Name = "[TE-Z]",IntroText = "[TE-Z] LOADER", HidePremium = false, SaveConfig = true, ConfigFolder = "[TE-Z]LOADERCONFII"})
- local q1 = false
- local q2 = "None"
- local keys = {
- "Z",
- "X",
- "C",
- "V",
- "F",
- }
- local function qew(shortName)
- shortName = string.lower(shortName)
- for _,Player in pairs(game.Workspace:GetChildren()) do
- local playerName = string.lower(Player.Name)
- if string.match(playerName, "^"..shortName) then
- return Player
- end
- end
- end
- local q = Window:MakeTab({
- Name = "Main",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- q:AddSlider({
- Name = "SpeedMultiplier",
- Min = 0,
- Max = 1000,
- Default = 1,
- Color = Color3.fromRGB(255,255,255),
- Increment = 0.5,
- ValueName = "Multiplier",
- Callback = function(Value)
- print(Value)
- game.Players.LocalPlayer.Character:SetAttribute("SpeedMultiplier", Value)
- end
- })
- q:AddDropdown({
- Name = "Target",
- Default = "None",
- Options = {1,2,3,4,5,6,7,8,9,0},
- Callback = function(Value)
- print(Value)
- q2 = Value
- end
- })
- q:AddToggle({
- Name = "Auto DF-Attack",
- Default = false,
- Callback = function(Value)
- print(Value)
- q1 = Value
- end
- })
- q:AddButton({
- Name = "Chest Farm",
- Callback = function()
- game["Run Service"].RenderStepped:Connect(function()
- local ch = game.Workspace:FindFirstChild("Chest3")
- if ch then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = ch.CFrame
- else
- local ch = game.Workspace:FindFirstChild("Chest2")
- if ch then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = ch.CFrame
- else
- local ch = game.Workspace:FindFirstChild("Chest1")
- if ch then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = ch.CFrame
- else
- end
- end
- end
- end)
- end
- })
- q:AddButton({
- Name = "Auto Fruits",
- Callback = function()
- print("button pressed")
- if game.Workspace:FindFirstChild("Fruit") then
- game.Workspace.Fruit:Remove()
- end
- while wait(0) do
- for i,v in game.Workspace:GetChildren() do
- if v.Name:match("Fruit") then
- local pos = v.Handle.Position
- game.Players.LocalPlayer.Character:MoveTo(pos)
- end
- end
- end
- end
- })
- while wait(0.075) do
- if q1 == true then
- local rk = keys[math.random(1,#keys)]
- local args = {
- [1] = tostring(rk)
- }
- game:GetService("Players").LocalPlayer.Character.Humanoid:FindFirstChild(""):InvokeServer(unpack(args))
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment