JacobRoblox

Untitled

Sep 19th, 2020
605
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.02 KB | None | 0 0
  1. -- Settings
  2. Delay = 0.5
  3. Distance = 11
  4. AutoSell = {
  5. Arrow = true,
  6. ["Rokakaka Fruit"] = true,
  7. ["Requiem Arrow"] = true,
  8. }
  9.  
  10. -- Variable
  11. local player = game.Players.LocalPlayer
  12. local sell = game.ReplicatedStorage.newremotes.SellItem
  13.  
  14. -- Platform
  15. local plat = Instance.new("Part")
  16. plat.Size = Vector3.new(3,1,3)
  17. plat.Anchored = true
  18. plat.CFrame = CFrame.new(0,10000,0)
  19. plat.Parent = workspace
  20.  
  21. -- Credits | if you remove this you're un-epic
  22. loadstring(game:HttpGet("https://pastebin.com/raw/vJg6Sa8w", true))()
  23.  
  24. -- Skeet
  25. while true do
  26. -- Teleport to items
  27. for i,v in pairs(workspace.Items:GetChildren()) do
  28. if v:FindFirstChild("Handle") and player.Character and player.Character:FindFirstChild("HumanoidRootPart") and player.Character:FindFirstChild("Humanoid") then
  29. player.Character.Humanoid:SetStateEnabled(Enum.HumanoidStateType.FallingDown, false)
  30. player.Character.Humanoid:SetStateEnabled(Enum.HumanoidStateType.Ragdoll, false)
  31. player.Character.HumanoidRootPart.CFrame = v.Handle.CFrame + Vector3.new(0, Distance, 0)
  32. wait(Delay)
  33. end
  34. end
  35. -- To Safety!
  36. if player.Character and player.Character:FindFirstChild("HumanoidRootPart") then
  37. player.Character.HumanoidRootPart.CFrame = plat.CFrame + Vector3.new(0, 5, 0)
  38. end
  39. -- Unequip Tool
  40. local tool = player.Character:FindFirstChildOfClass("Tool")
  41. if tool then
  42. tool.Parent = player.Backpack
  43. wait()
  44. end
  45. -- Use & Sell
  46. if player:FindFirstChild("Backpack") then
  47. for i,v in pairs(player.Backpack:GetChildren()) do
  48. if v.Name == "Money" and player.Character then
  49. v.Parent = player.Character
  50. wait()
  51. v:Activate()
  52. elseif AutoSell[v.Name] and player:FindFirstChild("Data") and player.Data:FindFirstChild("Money") and player.Data.Money.Value < 10000000 then
  53. sell:FireServer(v.Name)
  54. end
  55. end
  56. end
  57. wait(.25)
  58. end
  59.  
Add Comment
Please, Sign In to add comment