-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathHatchingSimulator3.lua
More file actions
67 lines (55 loc) · 1.73 KB
/
HatchingSimulator3.lua
File metadata and controls
67 lines (55 loc) · 1.73 KB
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
59
60
61
62
63
64
65
66
67
local Library = loadstring(game:HttpGet("https://github.com/N4RWH4L/Scripts/raw/main/Uwuware.lua", true))()
local Win = Library:CreateWindow("Hatching Simulator 3")
Win:AddToggle({
text = "Auto Coin",
flag = "AutoCoin"
}) spawn(function()
while wait() do
if Library.flags.AutoCoin then
if not game.Players.LocalPlayer.Character:FindFirstChild("Coin") then
game:GetService("Players").LocalPlayer.Backpack.Coin.Parent = game.Players.LocalPlayer.Character
end
game.Players.LocalPlayer.Character:FindFirstChild("Coin"):Activate()
end
end
end)
local Eggs = Win:AddFolder("Eggs")
local eggs = {}
for _, v in pairs(game:GetService("Workspace").Eggs:GetChildren()) do
if v:FindFirstChild("NameBrick") then
eggs[#eggs+1] = v.Name
end
end
Eggs:AddList({
text = "Egg",
flag = "Egg",
values = eggs
})
Eggs:AddToggle({
text = "Hatch 3",
flag = "Hatch3"
})
Eggs:AddToggle({
text = "Auto Open Egg",
flag = "AutoOpen",
}) spawn(function()
while wait() do
if Library.flags.AutoOpen then
game:GetService("ReplicatedStorage").KeyBind:InvokeServer("plsnohackplsnoooooob", game:GetService("Players").LocalPlayer, Library.flags.Egg, Library.flags.Hatch3, "", "", "", "", "", "")
end
end
end)
Eggs:AddButton({
text = "Open Egg",
callback = function()
game:GetService("ReplicatedStorage").KeyBind:InvokeServer("plsnohackplsnoooooob", game:GetService("Players").LocalPlayer, Library.flags.Egg, Library.flags.Hatch3, "", "", "", "", "", "")
end
})
local Credits = Win:AddFolder("Credits")
Credits:AddLabel({
text = "Script - Narwhal#0187"
})
Credits:AddLabel({
text = "UI - Jan"
})
Library:Init()