ADVERTISEMENTREMOVE ADS
Game icon

Inf Cash Inf Tix Dinas Hub

[🌊8 ] Truck RNG
1 month ago
Script preview thumbnail
Script Preview

Description

Inf Cash

Inf Tix

Dinas Hub

Enjoy

Tested with

ADVERTISEMENTREMOVE ADS
37 Lines • 1.07 KiB
Raw
local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/Vovabro46/DinasMenu/refs/heads/main/NewMenu.lua"))()
local window = Library:CreateWindow("Dinas Hub")
local mainTab = window:AddTab("Main", "🏠")
local settingsTab = window:AddTab("Settings", "⚙️")
Library:AddToggle(settingsTab, "Enable Rainbow Corner", function(state)
if state then
window:EnableRainbowCorners()
else
window:DisableRainbowCorners()
end
end)
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local AddCash = ReplicatedStorage.AddCash
local RunService = game:GetService("RunService")
local autoCash = false
local autoTix = false
RunService.Heartbeat:Connect(function()
if autoCash then
AddCash:FireServer("Cash", 100)
end
if autoTix then
AddCash:FireServer("Tix", 100)
end
end)
Library:AddButton(mainTab, "Inf Cash (Turn Off if need tix)", function()
autoCash = not autoCash
end)
Library:AddButton(mainTab, "Inf Tix (Turn Off if need cash)", function()
autoTix = not autoTix
end)
ADVERTISEMENTREMOVE ADS

Comments

0 comments
to add a comment
Loading comments
ADVERTISEMENTREMOVE ADS