-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStar Sim.lua
More file actions
80 lines (68 loc) · 2.38 KB
/
Star Sim.lua
File metadata and controls
80 lines (68 loc) · 2.38 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
68
69
70
71
72
73
74
75
76
77
78
79
80
repeat task.wait() until game:IsLoaded()
local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/GSstarGamer/GUI/main/Mercury-edit.lua"))()
local Convertables = require(game:GetService("ReplicatedStorage").PlayerData.InitialPlayerData)
local Player = game.Players.LocalPlayer
local GUI = Library:Create{
Name = "FallAngel Hub",
Size = UDim2.fromOffset(600, 400),
Theme = Library.Themes.GStheme,
Link = "https://discord.gg/tbENWKpgku"
}
GUI:Credit{
Name = "GS_StarGamer",
Description = "He is op",
V3rm = "https://v3rmillion.net/member.php?action=profile&uid=2560793",
Discord = "discord.gg/tbENWKpgku"
}
GUI:Credit{
Name = "x3Fall3nAngel",
Description = "He is op'er",
V3rm = "https://v3rmillion.net/member.php?action=profile&uid=2270329",
Discord = "discord.gg/tbENWKpgku"
}
GUI:Notification{
Title = "Hey!",
Text = "Join our discord server! discord.gg/tbENWKpgku",
Duration = 20,
Callback = function()
game:IsLoaded()
end
}
local Main = GUI:tab{
Name = "Main",
Icon = "rbxassetid://2174510075"
}
Main:Button{
Name = "Cut everthing in your world",
Description = nil,
Callback = function()
GUI:Notification{
Title = "Alert!",
Text = "Do not spam, it does not go any faster, this takes longer time depending on your world size, you can press when a new message comes.",
Duration = 25,
Callback = function() end
}
for i = 1,50 do
wait()
for _,v in pairs(workspace['Star_'..Player.Name].Player.Land:GetDescendants()) do
spawn(function()
if string.find(v.Name,'Ore_') or string.find(v.Name,'Tree_') then
for _,v2 in pairs(v:GetChildren()) do
game:GetService("ReplicatedStorage").Attack.UpdateHPEvent:FireServer(v2,'Axe')
end
end
end)
end
end
for _,v in pairs(Convertables.Conversion) do
game:GetService("ReplicatedStorage").Resources.Conversion:InvokeServer(_,"2000")
game:GetService("ReplicatedStorage").Resources.BuildingRemo:InvokeServer(_,2000)
end
GUI:Notification{
Title = "Alert",
Text = "You can press now",
Duration = 15 ,
Callback = function() end
}
end
}