0% found this document useful (0 votes)
259 views2 pages

A Universal Time

The document contains code for an auto-farming and selling script in Roblox. It sets variables like delay time and distance, creates a platform object in the workspace, and contains a loop that teleports the player to collect items, returns them to the platform, unequips any tools, uses collected money items, and automatically sells listed items if the player's money is below a threshold.

Uploaded by

nigger kid
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
259 views2 pages

A Universal Time

The document contains code for an auto-farming and selling script in Roblox. It sets variables like delay time and distance, creates a platform object in the workspace, and contains a loop that teleports the player to collect items, returns them to the platform, unequips any tools, uses collected money items, and automatically sells listed items if the player's money is below a threshold.

Uploaded by

nigger kid
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

-- Settings

Delay = 0.5
Distance = 11
AutoSell = {
Arrow = true,
["Rokakaka Fruit"] = true,
["Requiem Arrow"] = true,
}

-- Variable
local player = game.Players.LocalPlayer
local sell = game.ReplicatedStorage.newremotes.SellItem

-- Platform
local plat = Instance.new("Part")
plat.Size = Vector3.new(3,1,3)
plat.Anchored = true
plat.CFrame = CFrame.new(0,10000,0)
plat.Parent = workspace

-- Credits | if you remove this you're un-epic


loadstring(game:HttpGet("https://pastebin.com/raw/vJg6Sa8w", true))()

-- Skeet
while true do
-- Teleport to items
for i,v in pairs(workspace.Items:GetChildren()) do
if v:FindFirstChild("Handle") and player.Character and
player.Character:FindFirstChild("HumanoidRootPart") and
player.Character:FindFirstChild("Humanoid") then

player.Character.Humanoid:SetStateEnabled(Enum.HumanoidStateType.FallingDown,
false)

player.Character.Humanoid:SetStateEnabled(Enum.HumanoidStateType.Ragdoll, false)
player.Character.HumanoidRootPart.CFrame = v.Handle.CFrame +
Vector3.new(0, Distance, 0)
wait(Delay)
end
end
-- To Safety!
if player.Character and player.Character:FindFirstChild("HumanoidRootPart")
then
player.Character.HumanoidRootPart.CFrame = plat.CFrame + Vector3.new(0, 5,
0)
end
-- Unequip Tool
local tool = player.Character:FindFirstChildOfClass("Tool")
if tool then
tool.Parent = player.Backpack
wait()
end
-- Use & Sell
if player:FindFirstChild("Backpack") then
for i,v in pairs(player.Backpack:GetChildren()) do
if v.Name == "Money" and player.Character then
v.Parent = player.Character
wait()
v:Activate()
elseif AutoSell[v.Name] and player:FindFirstChild("Data") and
player.Data:FindFirstChild("Money") and player.Data.Money.Value < 10000000 then
sell:FireServer(v.Name)
end
end
end
wait(.25)
end

You might also like