Advertisement
K1ngBlitzy

Untitled

Jun 16th, 2021
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.85 KB | None | 0 0
  1. -- init
  2. local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/GreenDeno/Venyx-UI-Library/main/source.lua"))()
  3. local venyx = library.new("Venyx", 5013109572)
  4. local Notification = loadstring(game:HttpGet("https://api.irisapp.ca/Scripts/IrisBetterNotifications.lua"))()
  5.  
  6. -- themes
  7. local themes = {
  8. Background = Color3.fromRGB(24, 24, 24),
  9. Glow = Color3.fromRGB(0, 0, 0),
  10. Accent = Color3.fromRGB(10, 10, 10),
  11. LightContrast = Color3.fromRGB(20, 20, 20),
  12. DarkContrast = Color3.fromRGB(14, 14, 14),
  13. TextColor = Color3.fromRGB(255, 255, 255)
  14. }
  15.  
  16. -- first page
  17. local page = venyx:addPage("Autofarms", 5012544693)
  18. local section1 = page:addSection("Jobs Farm")
  19. local section2 = page:addSection("Status Farm")
  20. local section3 = page:addSection("Chest")
  21.  
  22. section1:addToggle("Inasal Grab", nil, function(farm)
  23. if farm == false then
  24. repeat wait() until game.Workspace:FindFirstChild("Indicator") == nil
  25. local stp = game:GetService("Workspace")["World Assets"]["Inasal Grab Pickup"].Items.Model.Light.Part
  26. game:GetService("ReplicatedStorage").Events.Delivery.DeliveryAbandonEvent:FireServer()
  27. wait(0.3)
  28. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = stp.CFrame + Vector3.new(-5, -7.9, 8)
  29. game:GetService("ReplicatedStorage").Events.Delivery.DeliveryAbandonEvent:FireServer()
  30. end
  31.  
  32. while farm == true do
  33. local que = game:GetService("Workspace").Location.delivery
  34. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = que.CFrame
  35. wait(0.5)
  36. game:GetService("ReplicatedStorage").Events.Delivery.DeliveryStartEvent:FireServer() -- Start Delivery
  37. local plc = game.Workspace:WaitForChild("Indicator", 5).PrimaryPart -- Get PrimaryPart of Indicator (Max wait 5 seconds)
  38. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = plc.CFrame + Vector3.new(0, 8, 0) -- Teleport a little above
  39. wait(0.5) -- Give our player time to teleport.
  40. game:GetService("ReplicatedStorage").Events.Delivery.DeliveryFinishEvent:FireServer(plc.Name) -- Finish Delivery
  41. game:GetService("ReplicatedStorage").Events.Delivery.DeliveryAbandonEvent:FireServer() -- Call cancel just incase. (This helps avoid more bugs I noticed)
  42. repeat wait() until game.Workspace:FindFirstChild("Indicator") == nil -- Wait until the game removes the Indeicator or we'll bug out.
  43.  
  44.  
  45. end
  46. end)
  47.  
  48.  
  49. --SECTION 2
  50.  
  51. section2:addButton("Hunger", function()
  52. local plr = game:GetService("Players").LocalPlayer
  53. local hngr = plr.PlayerStats.Hunger.Value
  54.  
  55. local function eat()
  56. local ck = "Chicken"
  57. local buy = game:GetService("ReplicatedStorage").Events["Stalls/Shops"].StallEvent
  58. local eat = game:GetService("ReplicatedStorage").Events.Food.FoodEvent
  59. local plr = game:GetService("Players").LocalPlayer.Name
  60. local Character = game.Players[plr].Character
  61. local Backpack = game.Players[plr].Backpack
  62.  
  63. buy:FireServer(ck)
  64. wait(0.5)
  65. Character.Humanoid:EquipTool(Backpack[ck])
  66. wait(1)
  67. eat:FireServer(ck)
  68. end
  69.  
  70. if hngr < 100 then
  71. eat() repeat wait() until hngr == 100
  72. end
  73. end)
  74.  
  75. --FATIGUE
  76.  
  77. section2:addButton("Fatigue", function()
  78. local plr = game:GetService("Players").LocalPlayer
  79. local fati = plr.PlayerStats.Fatigue.Value
  80. local sleep = game:GetService("ReplicatedStorage").Events.SleepRent.SleepRentEvent
  81.  
  82. if fati < 100 then
  83. sleep:FireServer() repeat wait() until fati == 100
  84. end
  85. end)
  86.  
  87. --SECTION 3
  88. --[[
  89. section3:addButton("Claim Chest", function()
  90. local plr = game:GetService("Players").LocalPlayer.Character
  91. local chest = game:GetService("Workspace").Zones.Chest.Part
  92. local tlft = game:GetService("Workspace").Chest.delivery.Timer.Local.Text
  93.  
  94. if chest.Transparency == 0 then
  95. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = chest.CFrame + Vector3.new(0, 1, 0)
  96. else
  97. spawn(function()
  98. Notification.Notify("Chest Already Claimed", tlft, "rbxassetid://6705317356");
  99. end)
  100. end
  101. end)
  102. ]]
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111. -- LocalPlayer
  112.  
  113. local Local = venyx:addPage("LocalPlayer", 5012544693)
  114. local LocalP = Local:addSection("LocalPlayer")
  115.  
  116. LocalP:addButton("Hide Name", function()
  117. local plr = game:GetService("Players").LocalPlayer.Character
  118. plr.Head.RankDisplay.Frame:Destroy()
  119. end)
  120.  
  121. LocalP:addButton("Destroy Animation", function()
  122. local plr = game:GetService("Players").LocalPlayer.Character
  123. plr.Animate:Destroy()
  124. end)
  125.  
  126. LocalP:addSlider("Walkspeed", 16, 16, 100, function(spd)
  127. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = spd
  128. end)
  129.  
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136. -- THEMES
  137.  
  138. local theme = venyx:addPage("Theme", 5012544693)
  139. local colors = theme:addSection("Colors")
  140.  
  141. for theme, color in pairs(themes) do -- all in one theme changer, i know, im cool
  142. colors:addColorPicker(theme, color, function(color3)
  143. venyx:setTheme(theme, color3)
  144. end)
  145. end
  146.  
  147.  
  148. -- load
  149. venyx:SelectPage(venyx.pages[1], true)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement