-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSodaChampionsSimulator.lua
More file actions
47 lines (39 loc) · 1.29 KB
/
SodaChampionsSimulator.lua
File metadata and controls
47 lines (39 loc) · 1.29 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
local HB = game:GetService("RunService").Heartbeat
local Library = loadstring(game:HttpGet("https://github.com/N4RWH4L/Scripts/raw/main/Uwuware.lua", true))()
local Win = Library:CreateWindow("Soda Champions Sim")
local Main = Win:AddFolder("Main") do
Main:AddToggle({
text = "Auto Tap",
flag = "AutoTap"
}) spawn(function()
while HB:Wait() do
if Library.flags.AutoTap then
game:GetService("ReplicatedStorage").Events.GameMechanics.Events.TappingEvent:FireServer()
end
end
end)
Main:AddList({
text = "Ammount",
flag = "Ammount",
values = require(game:GetService("ReplicatedStorage").Modules.Progression).RebirthTable --Adds an extra 1 for some reason
})
Main:AddToggle({
text = "Auto Rebirth",
flag = "AutoRebirth"
}) spawn(function()
while HB:Wait() do
if Library.flags.AutoRebirth then
game:GetService("ReplicatedStorage").Events.GameMechanics.Events.RebirthEvent:FireServer(tonumber(Library.flags.Ammount))
end
end
end)
end
local Credits = Win:AddFolder("Credits") do
Credits:AddLabel({
text = "Script - Narwhal#2358"
})
Credits:AddLabel({
text = "UI - Jan"
})
end
Library:Init()