View difference between Paste ID: 68KKY1Nu and eGXv0Ayw
SHOW: | | - or go back to the newest paste.
1
-- Game Link: https://www.roblox.com/games/1828509885/AUTO-EGGS-Egg-Farm-Simulator
2
3
--/ Made By Waynes_World1
4
5
local Screen = Instance.new("ScreenGui")
6
local Frame1 = Instance.new("Frame")
7
local Wayne = Instance.new("TextLabel")
8
local AD = Instance.new("TextButton")
9
10
Screen.Name = "Screen"
11
Screen.Parent = game.CoreGui
12
13
Frame1.Name = "Frame1"
14
Frame1.Parent = Screen
15
Frame1.Active = true
16
Frame1.BackgroundColor3 = Color3.new(1, 1, 1)
17
Frame1.Position = UDim2.new(0.409278363, 0, 0.106571935, 0)
18
Frame1.Size = UDim2.new(0, 176, 0, 109)
19
Frame1.Style = Enum.FrameStyle.RobloxRound
20
Frame1.Draggable = true
21
Frame1.Visible = true
22
23
Wayne.Name = "Wayne"
24
Wayne.Parent = Frame1
25
Wayne.BackgroundColor3 = Color3.new(1, 1, 1)
26
Wayne.BackgroundTransparency = 1
27
Wayne.Position = UDim2.new(0.04, 0, 0.6, 0)
28
Wayne.Size = UDim2.new(0, 147, 0, 15)
29
Wayne.Font = Enum.Font.SciFi
30
Wayne.Text = "Created By Waynes_World1"
31
Wayne.TextColor3 = Color3.new(0, 0.9, 0.996078)
32
Wayne.TextSize = 14
33
34
AD.Name = "AD"
35
AD.Parent = Frame1
36
AD.BackgroundColor3 = Color3.new(1, 1, 1)
37
AD.Position = UDim2.new(0.06, 0, 0.2, 0)
38
AD.Size = UDim2.new(0, 140, 0, 38)
39
AD.Style = Enum.ButtonStyle.RobloxRoundButton
40
AD.Font = Enum.Font.SciFi
41
AD.Text = "Auto Diamonds"
42
AD.TextColor3 = Color3.new(255, 0, 0)
43
AD.TextSize = 14
44
AD.MouseButton1Down:connect(function()
45
AD.TextColor3 = Color3.new(0, 0.992157, 0.0862745)
46
	for i = 1, math.huge do
47
wait(5)
48
local LocalFarm = nil
49
for i, a in pairs(game:GetDescendants()) do
50
if a:IsA("ObjectValue") then
51
if a.Value == game.Players.LocalPlayer then
52
LocalFarm = a.Parent
53
end
54
end
55
end
56
for i,b in pairs(LocalFarm.Diamonds:GetChildren()) do
57
b.CanCollide = false
58
b.CFrame = game.Players.LocalPlayer.Character.Head.CFrame
59
end
60
end
61
end)