Cizzy

Untitled

Aug 31st, 2021
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.70 KB | None | 0 0
  1. repeat wait() until game:IsLoaded()
  2.  
  3. local player = game.Players.LocalPlayer
  4.  
  5. local pickupItems = function()
  6. local itemsFolder = workspace.placeFolders.items:GetChildren()
  7. for i = 1, #itemsFolder do item = itemsFolder[i]
  8. if (item:FindFirstChild('owners') and item.owners:FindFirstChild(player.UserId) or item.Name:match('chicken')) and
  9. (player.Character.hitbox.Position - item.Position).magnitude < 15 then
  10. game:GetService("ReplicatedStorage").modules.network.pickUpItemRequest:InvokeServer(item)
  11. end
  12. end
  13. end
  14.  
  15. local damage = function()
  16. local distance, enemiesFolder = 15, workspace.placeFolders.entityManifestCollection:GetChildren()
  17. for i = 1, #enemiesFolder do enemy = enemiesFolder[i]
  18. if enemy and enemy:IsA('Part') and (player.Character.hitbox.Position - enemy.Position).magnitude < distance then
  19. game:GetService("ReplicatedStorage").modules.network.replicatePlayerAnimationSequence:FireServer('swordAnimations', 'strike1', {["attackSpeed"] = 0})
  20. game:GetService("ReplicatedStorage").modules.network.replicatePlayerAnimationSequence:FireServer('swordAnimations', 'strike2', {["attackSpeed"] = 0})
  21. game:GetService("ReplicatedStorage").modules.network.playerRequest_damageEntity:FireServer(enemy, Vector3.new(0,0,0), 'equipment')
  22. end
  23. end
  24. end
  25.  
  26. local lib = loadstring(game:HttpGet('https://raw.githubusercontent.com/obeseinsect/roblox/main/Ui%20Libraries/Old%20Uwuware%20Purple%20Edit.lua', true))()
  27. local window = lib:CreateWindow('Vesteria')
  28. window:AddLabel({text = "cameron was here"})
  29. local f = window:AddFolder('Farming')
  30. f:AddToggle({text = 'Killaura', state = killaura, callback = function(v) killaura = v end})
  31. f:AddToggle({text = 'Collect Drops', state = autoPickup, callback = function(v) autoPickup = v end})
  32. local p = window:AddFolder('Player')
  33. p:AddToggle({text = 'Godmode', state = god, callback = function(v) god = v end})
  34. p:AddToggle({text = 'Infinite Stamina', state = infStam, callback = function(v) infStam = v end})
  35. p:AddToggle({text = 'Infinite Magic', state = infMagic, callback = function(v) infMagic = v end})
  36. local t = window:AddFolder('Teleports')
  37. for i, v in pairs(workspace:GetChildren()) do
  38. if v:IsA('Part') and v:FindFirstChild('teleportDestination') then
  39. t:AddButton({text = game:GetService("MarketplaceService"):GetProductInfo(v.teleportDestination.Value).Name, callback = function()
  40. game:GetService("ReplicatedStorage").modules.network["playerRequest_useTeleporter"]:InvokeServer(v)
  41. end})
  42. end
  43. end
  44. local m = window:AddFolder('Misc')
  45. m:AddButton({text = 'Open Shop', callback = function() game:GetService("ReplicatedStorage").modules.network.openShop:Invoke(game) end})
  46. lib:Init()
  47.  
  48. local mt = getrawmetatable(game)
  49. local old = mt.__namecall
  50. setreadonly(mt, false)
  51.  
  52. mt.__namecall = newcclosure(function(self, ...)
  53. local args = {...}
  54. if args[1] == 'playerRequest_damageEntity' and args[2] == 60 then
  55. if god then
  56. args[2] = 0
  57. else
  58. args[2] = 60
  59. end
  60. return old(self, unpack(args))
  61. end
  62. return old(self, ...)
  63. end)
  64.  
  65. while wait() do
  66. if killaura then
  67. damage()
  68. end
  69. if autoPickup then
  70. pickupItems()
  71. end
  72. if infStam and player.Character:FindFirstChild('hitbox') and player.Character.hitbox:FindFirstChild('stamina') then
  73. player.Character.hitbox.stamina.Value = player.Character.hitbox.maxStamina.Value
  74. end
  75. if infMagic and player.Character:FindFirstChild('hitbox') and player.Character.hitbox:FindFirstChild('mana') then
  76. player.Character.hitbox.mana.Value = player.Character.hitbox.maxMana.Value
  77. end
  78. end
Add Comment
Please, Sign In to add comment