-
Notifications
You must be signed in to change notification settings - Fork 0
/
DAEaster.lua
58 lines (50 loc) · 1.79 KB
/
DAEaster.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
local library = loadstring(game:HttpGet(("https://raw.githubusercontent.com/AikaV3rm/UiLib/master/Lib.lua")))()
local w = library:CreateWindow("Dragon Adventures") -- Creates the window
local b = w:CreateFolder("UwUs Cutely") -- Creates the folder(U will put here your buttons,etc)
b:Button(
"Easter Egg TP",
function()
local noob = game.Players.LocalPlayer
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local TwT = ReplicatedStorage.EasterEventStorage:WaitForChild("GetEggRemote")
for i, v in pairs(Workspace:GetDescendants()) do
if v:IsA("MeshPart") and v.MeshId == "rbxassetid://6563267204" and v.Name ~= "Egg" then
noob.Character.HumanoidRootPart.CFrame = v.CFrame
wait()
TwT:FireServer(v.Parent)
end
end
end
)
b:Button(
"Mystery Egg TP",
function()
local noob = game.Players.LocalPlayer
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local OwO = ReplicatedStorage.EasterEventStorage:WaitForChild("GetCalendarEggRemote")
for i, v in pairs(Workspace:GetDescendants()) do
if v:IsA("MeshPart") and v.MeshId == "rbxassetid://6540320589" and v.Name ~= "Egg" then
noob.Character.HumanoidRootPart.CFrame = v.CFrame
wait()
local UwU = OwO:InvokeServer(v.Parent)
print(v.Parent, UwU)
end
end
end
)
b:Button(
"Carrot Cake Farm",
function()
while wait() do
for _,v in pairs(game:GetService("Workspace").HarvestZones.Fruit.Drops.Small:GetDescendants()) do
if v:IsA("MeshPart") then
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
wait(0.5)
fireclickdetector(game:GetService("Workspace").HarvestZones.Fruit.Drops.Small.ClickDetector)
wait(8)
end
end
end
end
)
b:DestroyGui()