View difference between Paste ID: JkxKhN0A and g5N7VHne
SHOW: | | - or go back to the newest paste.
1
local autofarm = Instance.new("ScreenGui")
2
local main = Instance.new("Frame")
3
local title = Instance.new("TextLabel")
4
local rebirthmainoff = Instance.new("Frame")
5
local rebirthoff = Instance.new("TextButton")
6
local rebithmainon = Instance.new("Frame")
7
local rebirthon = Instance.new("TextButton")
8
local hoopmainoff = Instance.new("Frame")
9
local hoopoff = Instance.new("TextButton")
10
local gemmainoff = Instance.new("Frame")
11
local gemoff = Instance.new("TextButton")
12
local orbmainoff = Instance.new("Frame")
13
local orboff = Instance.new("TextButton")
14
local orbmainon = Instance.new("Frame")
15
local orbon = Instance.new("TextButton")
16
local gemmainon = Instance.new("Frame")
17
local gemon = Instance.new("TextButton")
18
local hoopmainon = Instance.new("Frame")
19
local hoopon = Instance.new("TextButton")
20
local credits = Instance.new("TextLabel")
21
--Properties:
22
autofarm.Name = "التلقائي التجميع"
23
autofarm.Parent = game.CoreGui
24
25
main.Name = "main"
26
main.Parent = autofarm
27
main.BackgroundColor3 = Color3.new(1, 0.333333, 1)
28
main.Position = UDim2.new(0.141270816, 0, 0.617936134, 0)
29
main.Size = UDim2.new(0, 394, 0, 256)
30
main.Active = true
31
main.Draggable = true
32
33
title.Name = "title"
34
title.Parent = main
35
title.BackgroundColor3 = Color3.new(0.333333, 1, 1)
36
title.Size = UDim2.new(0, 394, 0, 40)
37
title.Font = Enum.Font.GothamBold
38-
title.Text = "ايفل بواسطة صنع"
38+
title.Text = "سكربت عربي من صنع محمد"
39
title.TextColor3 = Color3.new(0, 0, 0)
40
title.TextSize = 14
41
42
rebirthmainoff.Name = "ريبيث"
43
rebirthmainoff.Parent = main
44
rebirthmainoff.BackgroundColor3 = Color3.new(1, 1, 1)
45
rebirthmainoff.Position = UDim2.new(0.0710659921, 0, 0.65234375, 0)
46
rebirthmainoff.Size = UDim2.new(0, 338, 0, 39)
47
48
rebirthoff.Name = "ريبيث"
49
rebirthoff.Parent = rebirthmainoff
50
rebirthoff.BackgroundColor3 = Color3.new(1, 0, 0)
51
rebirthoff.Size = UDim2.new(0, 338, 0, 39)
52
rebirthoff.Font = Enum.Font.GothamBlack
53
rebirthoff.Text = "تلقائي ريبيث"
54
rebirthoff.TextColor3 = Color3.new(0, 0, 0)
55
rebirthoff.TextSize = 14
56
rebirthoff.MouseButton1Down:connect(function()
57
rebirthmainoff.Visible = false
58
rebithmainon.Visible = true
59
60
wait(1)
61
_G.Rebirth = true
62
63
while _G.Rebirth == true do wait(5)
64
local tbl_main = 
65
{
66
      "rebirthRequest"
67
}
68
game:GetService("ReplicatedStorage").rEvents.rebirthEvent:FireServer(unpack(tbl_main))
69
end
70
end)
71
72
rebithmainon.Name = "rebithmainon"
73
rebithmainon.Parent = main
74
rebithmainon.BackgroundColor3 = Color3.new(1, 1, 1)
75
rebithmainon.Position = UDim2.new(0.0710659027, 0, 0.65234375, 0)
76
rebithmainon.Size = UDim2.new(0, 338, 0, 39)
77
rebithmainon.Visible = false
78
79
rebirthon.Name = "rebirthon"
80
rebirthon.Parent = rebithmainon
81
rebirthon.BackgroundColor3 = Color3.new(0, 1, 0)
82
rebirthon.Size = UDim2.new(0, 338, 0, 39)
83
rebirthon.Font = Enum.Font.GothamBlack
84
rebirthon.Text = "تلقائي ريبيث "
85
rebirthon.TextColor3 = Color3.new(0, 0, 0)
86
rebirthon.TextSize = 14
87
rebirthon.MouseButton1Down:connect(function()
88
rebithmainon.Visible = false
89
rebirthmainoff.Visible = true
90
91
wait(1)
92
_G.Rebirth = false
93
94
while _G.Rebirth == true do wait(5)
95
local tbl_main = 
96
{
97
      "rebirthRequest"
98
}
99
game:GetService("ReplicatedStorage").rEvents.rebirthEvent:FireServer(unpack(tbl_main))
100
end
101
end)
102
103
hoopmainoff.Name = "hoopmainoff"
104
hoopmainoff.Parent = main
105
hoopmainoff.BackgroundColor3 = Color3.new(1, 1, 1)
106
hoopmainoff.Position = UDim2.new(0.0482233502, 0, 0.25, 0)
107
hoopmainoff.Size = UDim2.new(0, 109, 0, 50)
108
109
hoopoff.Name = "hoopoff"
110
hoopoff.Parent = hoopmainoff
111
hoopoff.BackgroundColor3 = Color3.new(1, 0, 0)
112
hoopoff.Position = UDim2.new(0, 0, -0.00941181183, 0)
113
hoopoff.Size = UDim2.new(0, 109, 0, 50)
114
hoopoff.Font = Enum.Font.GothamBlack
115
hoopoff.Text = "الحلقات جمع"
116
hoopoff.TextColor3 = Color3.new(0, 0, 0)
117
hoopoff.TextSize = 14
118
hoopoff.MouseButton1Down:connect(function()
119
hoopmainoff.Visible = false
120
hoopmainon.Visible = true
121
122
wait(1)
123
_G.Farm3 = true
124
125
while _G.Farm3 == true do wait()
126
for i,v in pairs(game.Workspace.Hoops:GetChildren()) do
127
v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
128
end
129
end
130
end)
131
132
gemmainoff.Name = "gemmainoff"
133
gemmainoff.Parent = main
134
gemmainoff.BackgroundColor3 = Color3.new(1, 1, 1)
135
gemmainoff.Position = UDim2.new(0.360406041, 0, 0.25, 0)
136
gemmainoff.Size = UDim2.new(0, 109, 0, 50)
137
138
gemoff.Name = "gemoff"
139
gemoff.Parent = gemmainoff
140
gemoff.BackgroundColor3 = Color3.new(1, 0, 0)
141
gemoff.Size = UDim2.new(0, 109, 0, 50)
142
gemoff.Font = Enum.Font.GothamBlack
143
gemoff.Text = "الالماس جمع"
144
gemoff.TextColor3 = Color3.new(0, 0, 0)
145
gemoff.TextSize = 14
146
gemoff.MouseButton1Down:connect(function()
147
gemmainoff.Visible = false
148
gemmainon.Visible = true
149
150
wait(1)
151
_G.Farm2 = true
152
153
while _G.Farm2 == true do wait()
154
for i,v in pairs(game.Workspace.orbFolder.City:GetChildren()) do
155
if v.Name == "Gem" then
156
v.outerGem.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
157
end
158
end
159
end
160
end)
161
162
orbmainoff.Name = "orbmainoff"
163
orbmainoff.Parent = main
164
orbmainoff.BackgroundColor3 = Color3.new(1, 1, 1)
165
orbmainoff.Position = UDim2.new(0.667512774, 0, 0.25, 0)
166
orbmainoff.Size = UDim2.new(0, 109, 0, 50)
167
168
orboff.Name = "orboff"
169
orboff.Parent = orbmainoff
170
orboff.BackgroundColor3 = Color3.new(1, 0, 0)
171
orboff.Position = UDim2.new(-2.38418579e-07, 0, 0, 0)
172
orboff.Size = UDim2.new(0, 109, 0, 50)
173
orboff.Font = Enum.Font.GothamBlack
174
orboff.Text = "الخطوات جمع "
175
orboff.TextColor3 = Color3.new(0, 0, 0)
176
orboff.TextSize = 14
177
orboff.MouseButton1Down:connect(function()
178
orbmainoff.Visible = false
179
orbmainon.Visible = true
180
181
wait(1)
182
_G.Farm1 = true
183
184
while _G.Farm1 == true do wait()
185
for i,v in pairs(game.Workspace.orbFolder.City:GetChildren()) do
186
if v.Name ~= "Gem" then
187
v.outerOrb.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
188
end
189
end
190
end
191
end)
192
193
orbmainon.Name = "orbmainon"
194
orbmainon.Parent = main
195
orbmainon.BackgroundColor3 = Color3.new(1, 1, 1)
196
orbmainon.Position = UDim2.new(0.667512536, 0, 0.25, 0)
197
orbmainon.Size = UDim2.new(0, 109, 0, 50)
198
orbmainon.Visible = false
199
200
orbon.Name = "orbon"
201
orbon.Parent = orbmainon
202
orbon.BackgroundColor3 = Color3.new(0, 1, 0)
203
orbon.Size = UDim2.new(0, 109, 0, 50)
204
orbon.Font = Enum.Font.GothamBlack
205
orbon.Text = "الخطوات جمع "
206
orbon.TextColor3 = Color3.new(0, 0, 0)
207
orbon.TextSize = 14
208
orbon.MouseButton1Down:connect(function()
209
orbmainon.Visible = false
210
orbmainoff.Visible = true
211
212
wait(1)
213
_G.Farm1 = false
214
215
while _G.Farm1 == true do wait()
216
for i,v in pairs(game.Workspace.orbFolder.City:GetChildren()) do
217
if v.Name ~= "Gem" then
218
v.outerOrb.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
219
end
220
end
221
end
222
end)
223
224
gemmainon.Name = "gemmainon"
225
gemmainon.Parent = main
226
gemmainon.BackgroundColor3 = Color3.new(1, 1, 1)
227
gemmainon.Position = UDim2.new(0.357867986, 0, 0.25, 0)
228
gemmainon.Size = UDim2.new(0, 109, 0, 50)
229
gemmainon.Visible = false
230
231
gemon.Name = "gemon"
232
gemon.Parent = gemmainon
233
gemon.BackgroundColor3 = Color3.new(0, 1, 0)
234
gemon.Position = UDim2.new(0.00917410851, 0, 0, 0)
235
gemon.Size = UDim2.new(0, 109, 0, 50)
236
gemon.Font = Enum.Font.GothamBlack
237
gemon.Text = "الالماس حمع "
238
gemon.TextColor3 = Color3.new(0, 0, 0)
239
gemon.TextSize = 14
240
gemon.MouseButton1Down:connect(function()
241
gemmainon.Visible = false
242
gemmainoff.Visible = true
243
244
wait(1)
245
_G.Farm2 = false
246
247
while _G.Farm2 == true do wait()
248
for i,v in pairs(game.Workspace.orbFolder.City:GetChildren()) do
249
if v.Name == "Gem" then
250
v.outerGem.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
251
end
252
end
253
end
254
end)
255
256
hoopmainon.Name = "hoopmainon"
257
hoopmainon.Parent = main
258
hoopmainon.BackgroundColor3 = Color3.new(1, 1, 1)
259
hoopmainon.Position = UDim2.new(0.0482233465, 0, 0.24609375, 0)
260
hoopmainon.Size = UDim2.new(0, 109, 0, 50)
261
hoopmainon.Visible = false
262
263
hoopon.Name = "hoopon"
264
hoopon.Parent = hoopmainon
265
hoopon.BackgroundColor3 = Color3.new(0, 1, 0)
266
hoopon.Position = UDim2.new(0, 0, 0.0199999809, 0)
267
hoopon.Size = UDim2.new(0, 109, 0, 50)
268
hoopon.Font = Enum.Font.GothamBlack
269
hoopon.Text = "الحلقات جمع (يعمل)"
270
hoopon.TextColor3 = Color3.new(0, 0, 0)
271
hoopon.TextSize = 14
272
hoopon.MouseButton1Down:connect(function()
273
hoopmainon.Visible = false
274
hoopmainoff.Visible = true
275
276
wait(1)
277
_G.Farm3 = false
278
279
while _G.Farm3 == true do wait()
280
for i,v in pairs(game.Workspace.Hoops:GetChildren()) do
281
v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
282
end
283
end
284
end)
285
286
credits.Name = "معلوماتي"
287
credits.Parent = main
288
credits.BackgroundColor3 = Color3.new(0.333333, 0, 0.498039)
289
credits.Position = UDim2.new(0, 0, 0.83984375, 0)
290
credits.Size = UDim2.new(0, 393, 0, 41)
291
credits.Font = Enum.Font.GothamBlack
292-
credits.Text = "ايفل بواسطة صنع"
292+
credits.Text = "سكربت عربي ماب السرعه"
293
credits.TextColor3 = Color3.new(0.333333, 1, 1)
294
credits.TextSize = 14
295
_G.Loll = true
296
while _G.Loll == true do wait(0.01)
297
for i=1,500 do
298
local tbl_main = 
299
{
300
      "collectOrb", 
301
      "Red Orb", 
302
      "City"
303
}
304
game:GetService("ReplicatedStorage").rEvents.orbEvent:FireServer(unpack(tbl_main))
305
306
local tbl_main = 
307
{
308
      "collectOrb", 
309
      "Yellow Orb", 
310
      "City"
311
}
312
game:GetService("ReplicatedStorage").rEvents.orbEvent:FireServer(unpack(tbl_main))
313
314
local tbl_main = 
315
{
316
      "collectOrb", 
317
      "Gem", 
318
      "City"
319
}
320
game:GetService("ReplicatedStorage").rEvents.orbEvent:FireServer(unpack(tbl_main))
321
322
local tbl_main = 
323
{
324
      "collectOrb", 
325
      "Orange Orb", 
326
      "City"
327
}
328
game:GetService("ReplicatedStorage").rEvents.orbEvent:FireServer(unpack(tbl_main))
329
330
local tbl_main = 
331
{
332
      "rebirthRequest"
333
}
334
game:GetService("ReplicatedStorage").rEvents.rebirthEvent:FireServer(unpack(tbl_main))
335
end
336
end
337
  
338