Opensource money giver for this plinko game.
View raw script code
local Fluent = loadstring(game:HttpGet("https://github.com/dawid-scripts/Fluent/releases/latest/download/main.lua"))()
local SaveManager = loadstring(game:HttpGet("https://raw.githubusercontent.com/dawid-scripts/Fluent/master/Addons/SaveManager.lua"))()
local InterfaceManager = loadstring(game:HttpGet("https://raw.githubusercontent.com/dawid-scripts/Fluent/master/Addons/InterfaceManager.lua"))()
local Window = Fluent:CreateWindow({
Title = "Plinka Script",
SubTitle = "Money giver by ZynixScripts.net",
TabWidth = 160,
Size = UDim2.fromOffset(580, 460),
Acrylic = true,
Theme = "Dark",
MinimizeKey = Enum.KeyCode.LeftControl
})
local Tabs = {
Main = Window:AddTab({ Title = "Main Features", Icon = "home" })
}
local PlinkoSync = game:GetService("ReplicatedStorage"):WaitForChild("PlinkoSync")
local SelectedAmount = 100
local Slider = Tabs.Main:AddSlider("MoneySlider", {
Title = "Select Amount",
Description = "Choose how much money to send to the server",
Default = 100,
Min = 1,
Max = 1000000,
Rounding = 0,
Callback = function(Value)
SelectedAmount = Value
end
})
Tabs.Main:AddButton({
Title = "Fire Remote Event",
Description = "Fires PlinkoSync with your chosen amount.",
Callback = function()
Fluent:Notify({
Title = "PlinkoSync",
Content = "Sending Win event with amount: " .. tostring(SelectedAmount),
Duration = 3
})
PlinkoSync:FireServer("Win", SelectedAmount)
end
})
Window:SelectTab(1)
Fluent:Notify({
Title = "Script Made By ZynixScripts",
Content = "Get more keyless scripts @ ZynixScripts.net",
Duration = 5
})