-
Notifications
You must be signed in to change notification settings - Fork 0
/
MoneySimulatorGui.lua
158 lines (145 loc) · 5.33 KB
/
MoneySimulatorGui.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
local Window = Library.CreateLib("Money Sim Gui", "DarkTheme")
local clicks = 0
local A = 0
local B = 0
local C = 0
local D = 0
local E = 0
local F = 0
--Upgrades
local games = Window:NewTab("Upgrades")
local GameSection = games:NewSection("Auto Upgrades")
GameSection:NewToggle("Auto Upgrade Power", "When on Will Auto Upgrade The Power", function(state)
if state then
A = 1
while A == 1 do
game:GetService("ReplicatedStorage").UpgradePower:FireServer()
wait(0.05)
end
else
A = 0
end
end)
GameSection:NewToggle("Auto Upgrade Bag", "When on Will Auto Upgrade The Bag", function(state)
if state then
B = 1
while B == 1 do
game:GetService("ReplicatedStorage").UpgradeBag:FireServer()
wait(0.05)
end
else
B = 0
end
end)
GameSection:NewToggle("Auto Tier up", "When on Will Auto Tier up", function(state)
if state then
C = 1
while C == 1 do
game:GetService("ReplicatedStorage").TierUp:FireServer()
wait(0.05)
end
else
C = 0
end
end)
GameSection:NewToggle("Auto Rank up", "When on Will Auto Rank Up", function(state)
if state then
E = 1
while E == 1 do
game:GetService("ReplicatedStorage").UpgradeRank:FireServer()
wait(0.05)
end
else
E = 0
end
end)
GameSection:NewToggle("Auto Buy Runes", "When on Will Auto Buy Runes", function(state)
if state then
D = 1
while D == 1 do
game:GetService("ReplicatedStorage").BuyRune:FireServer(1)
wait(0.05)
end
else
D = 0
end
end)
--general
local general = Window:NewTab("General")
local Auto = general:NewSection("Auto")
Auto:NewToggle("Auto Clicker", "When on Will automaticly press the cash button", function(state)
if state then
clicks = 1
while click == 1 do
wait(0.05)
end
else
clicks = 0
end
end)
Auto:NewToggle("Auto Refill", "When on will automaticly refill bag", function(state)
if state then
if Player.PlayerGui.GameGui.Fill.Filled.Text == "0%" then
game:GetService("ReplicatedStorage").FillMoney:FireServer()
end
else
D = 0
end
end)
--teleports
local teleports = Window:NewTab("Teleports")
local teleports = teleports:NewSection("Teleports")
teleports:NewButton("Bag Fill", "ButtonInfo", function()
local pl = game.Players.LocalPlayer.Character.HumanoidRootPart
local location = CFrame.new(59, 7.3, 20)
local humanoid = game.Players.LocalPlayer.Character.Humanoid
humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
wait(0.1)
pl.CFrame = location
end)
teleports:NewButton("Upgrades", "ButtonInfo", function()
local pl = game.Players.LocalPlayer.Character.HumanoidRootPart
local location = CFrame.new(2, 11.6, 1.3)
local humanoid = game.Players.LocalPlayer.Character.Humanoid
humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
wait(0.1)
pl.CFrame = location
end)
teleports:NewButton("Runes", "ButtonInfo", function()
local pl = game.Players.LocalPlayer.Character.HumanoidRootPart
local location = CFrame.new(-23.2, 7.4, 129)
local humanoid = game.Players.LocalPlayer.Character.Humanoid
humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
wait(0.1)
pl.CFrame = location
end)
teleports:NewButton("Gem Upgrades", "ButtonInfo", function()
local pl = game.Players.LocalPlayer.Character.HumanoidRootPart
local location = CFrame.new(106.7, 7.4, 44.5)
local humanoid = game.Players.LocalPlayer.Character.Humanoid
humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
wait(0.1)
pl.CFrame = location
end)
teleports:NewButton("Research", "ButtonInfo", function()
local pl = game.Players.LocalPlayer.Character.HumanoidRootPart
local location = CFrame.new(38.25, 7.4, 89.2)
local humanoid = game.Players.LocalPlayer.Character.Humanoid
humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
wait(0.1)
pl.CFrame = location
end)
--player
local player = Window:NewTab("Player")
local MovementSection = player:NewSection("Movement")
MovementSection:NewSlider("WalkSpeed", "Changes the Walkspeed", 250, 16, function(v)
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = v
end)
MovementSection:NewSlider("Jump Power", "Changes the Jump Power", 250, 50, function(v)
game.Players.LocalPlayer.Character.Humanoid.JumpPower = v
end)
local MovementSection = player:NewSection("Miscellaneous")
--credits
local credits = Window:NewTab("Credits")
local Auto = credits:NewSection("By BoxOfBirds#9924 & Pew#3918")