Created by MARCO POLO#3842
Features:
- AUTO GET PRESENTS
- AUTO OPEN PRESENTS
SCRIPTS: [2]
AUTO OPEN PRESENTS:
_G.present = "legend" -- Basic Present = basic , Epic present = epic , Legendary Present = legend
_G.autoopen = true
_G.speed = 700
if _G.autoopen == true then
for i=1,_G.speed do
print(i)
task.spawn(function()
while _G.autoopen do
game:GetService("ReplicatedStorage").Christmas.OpenPresent:InvokeServer(_G.present)
wait(1)
end
end)
end
end
AUTO GET PRESENTS
_G.xmass = true
spawn(function()
while _G.xmass do
pcall(function()
game:GetService("ReplicatedStorage").Christmas.ResetTree:InvokeServer()
wait(3)
end)
end
end)
while _G.xmass do
wait()
pcall(function()
for i,v in pairs(game:GetService("Workspace").Christmas.DecorationHunt:GetDescendants()) do
if v.Name == "client" and _G.xmass == true and v.MeshId == game:GetService("Workspace").Christmas.hologram.MeshId then
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
wait(0.2)
game:GetService("ReplicatedStorage").Christmas.PickupDecoration:InvokeServer(v.Parent)
wait(0.2)
game.Players.LocalPlayer.Character:MoveTo(game:GetService("Workspace").Christmas.TreeModel.Deliver.Position)
wait(0.2)
game:GetService("ReplicatedStorage").Christmas.DeliverDecoration:InvokeServer()
wait(0.2)
end
end
end)
end