Advertisement
acym0701

Untitled

May 7th, 2022
379
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
AutoIt 3.83 KB | None | 0 0
  1. repeat wait() until game:IsLoaded()
  2. local Venyx = loadstring(game:HttpGet("https://raw.githubusercontent.com/Stefanuk12/Venyx-UI-Library/main/source2.lua"))()
  3. local UI = Venyx.new({
  4.   title = "Animal Simulator - By Pirator/Lucky | youtube.com/bugxie"
  5. })
  6.  
  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. local Main = UI:addPage({
  17.   title = "Main - Youtube.com/bugxie",
  18.   icon = 887262219
  19. })
  20.  
  21. local Gameplaydiv = Main:addSection({
  22.   title = "Gameplay"
  23. })
  24.  
  25. local function findPlr(name)
  26. for _,v in pairs(game:GetService("Players"):GetPlayers()) do
  27.     if string.find(v.Name, name) then
  28.         return v
  29.     end
  30. end
  31. return nil
  32. end
  33.  
  34. local function damageplayer(player)
  35. for i,p in pairs(game.Workspace:GetChildren()) do
  36. if p.Name == player then
  37. print("Damaging " .. player)
  38. game:GetService("ReplicatedStorage").jdskhfsIIIllliiIIIdchgdIiIIIlIlIli:FireServer(p.Humanoid,1) -- the last arguement is not damage don't bother changin it
  39. print("Damaged " .. player)
  40. end
  41. end
  42. end
  43.  
  44. local collecting = false
  45.  
  46. Gameplaydiv:addToggle({
  47. title = "Collect Chests",
  48. toggled = nil,
  49. callback = function(value)
  50. collecting = value
  51. while wait(3) and collecting do
  52.  game:GetService("ReplicatedStorage").TreasureEvent:FireServer(workspace.Treasures.Treasure5)
  53. end
  54. end})
  55.  
  56. local damagedplayer = nil
  57.  
  58. Gameplaydiv:addTextbox({
  59.  title = "Choose Player",
  60.  default = "Mr. Poopy Pants",
  61.  callback = function(text, focusLost)
  62.      if (focusLost) then
  63.       print("Searching " .. text)
  64.       local Player = findPlr(text)
  65.       print("Found " .. tostring(Player))
  66.       local Player = game.Workspace:FindFirstChild(Player.Name)
  67.       damagedplayer = tostring(Player)
  68.      end
  69.  end
  70. })
  71.  
  72. Gameplaydiv:addButton({
  73.  title = "Damage Player",
  74.  callback = function()
  75.  damageplayer(damagedplayer)
  76.  end
  77. })
  78.  
  79. Gameplaydiv:addButton({
  80.  title = "Damage All", -- does not damage yourself or players in safe-zone
  81.  callback = function()
  82.  for i,v in pairs(game.Players:GetChildren()) do
  83.   for i,p in pairs(game.Workspace:GetChildren()) do
  84.   if p.Name == v.Name and p.Name ~= game.Players.LocalPlayer.Name then
  85.   game:GetService("ReplicatedStorage").jdskhfsIIIllliiIIIdchgdIiIIIlIlIli:FireServer(p.Humanoid,1)
  86.   end
  87.   end
  88.  end
  89.   end
  90. })
  91.  
  92. Gameplaydiv:addTextbox({
  93.  title = "Force Join Pack",
  94.  default = "Case Sensitive",
  95.  callback = function(text, focusLost)
  96.      if (focusLost) then
  97.        for i,v in pairs(game.Workspace.Teams:GetChildren()) do
  98.        if string.find(text, v.Name) then
  99.       game:GetService("ReplicatedStorage").acceptedEvent:FireServer(v.Name)
  100.      end
  101.  end
  102. end
  103. end
  104. })
  105.  
  106. Gameplaydiv:addButton({
  107.  title = "Print All Teams (F9)",
  108.  callback = function()
  109.    for i,v in pairs(game.Workspace.Teams:GetChildren()) do
  110.        print(v.Name)
  111.    end
  112.  end
  113. })
  114.  
  115. Gameplaydiv:addTextbox({
  116.  title = "Force Player Ride",
  117.  default = "Case Sensitive",
  118.  callback = function(text, focusLost)
  119.      if (focusLost) then
  120.        for i,v in pairs(game.Players:GetChildren()) do
  121.        if string.find(v.Name, text) then
  122.       game:GetService("ReplicatedStorage").RideEvents.acceptEvent:FireServer(v.Name)
  123.      end
  124.  end
  125. end
  126. end
  127. })
  128.  
  129. local Theme = UI:addPage({
  130.  title = "Theme",
  131.  icon = 4890363233
  132. })
  133.  
  134. local Colors = Theme:addSection({
  135.  title = "Colors"
  136. })
  137.  
  138. for theme, color in pairs(Themes) do
  139.  Colors:addColorPicker({
  140.      title = theme,
  141.      default = color,
  142.      callback = function(color3)
  143.          UI:setTheme({
  144.              theme = theme,
  145.              color3 = color3
  146.          })
  147.      end
  148.  })
  149. end
  150.  
  151. UI:SelectPage({
  152.  page = UI.pages[1],
  153.  toggle = true
  154. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement