ADVERTISEMENTREMOVE ADS
Game icon

Dinas Hub Op script

Gun Merge Tycoon
2 months ago
Script preview thumbnail
Script Preview

Description

Inf Bullets

Auto Upgrade

Auto Merge

Tested with

ADVERTISEMENTREMOVE ADS
82 Lines • 2.25 KiB
Raw
local Library = loadstring(game:HttpGet("https://pastefy.app/Rf8iYjYI/raw"))()
local Window = Library:CreateWindow("Dinas Hub")
local Tab1 = Window:AddTab("Game")
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local GetDropRemote = ReplicatedStorage.Remote.GetDropRemote
local isActive = false
local taskThread
Tab1:AddToggle({
Text = "Get Bullets",
Default = false,
Callback = function(enabled)
if enabled then
if isActive then return end
isActive = true
taskThread = coroutine.create(function()
while isActive do
GetDropRemote:FireServer(20, Vector3.new(-194, 0, 200))
wait(0.1)
end
end)
coroutine.resume(taskThread)
else
isActive = false
end
end,
})
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local ButtonPressRemote = ReplicatedStorage.Remote.ButtonPressRemote
local isActive = false
local taskThread
Tab1:AddToggle({
Text = "Auto Upgrade",
Default = false,
Callback = function(enabled)
if enabled then
if isActive then return end
isActive = true
taskThread = coroutine.create(function()
while isActive do
ButtonPressRemote:FireServer("Upgrade")
wait(0.1)
end
end)
coroutine.resume(taskThread)
else
isActive = false
end
end,
})
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local ButtonPressRemote = ReplicatedStorage.Remote.ButtonPressRemote
local isActive = false
local taskThread
Tab2:AddToggle({
Text = "Auto Merge",
Default = false,
Callback = function(enabled)
if enabled then
if isActive then return end
isActive = true
taskThread = coroutine.create(function()
while isActive do
ButtonPressRemote:FireServer("Merge")
wait(1)
end
end)
coroutine.resume(taskThread)
else
isActive = false
end
end,
})
ADVERTISEMENTREMOVE ADS

Comments

8 comments
to add a comment
Ma

doesn't work on solara.

0
0
Di

@Marclin Try now

0
0
Ma

@Dinas It didn't work again, do I need to do smth specific, idk.

0
0
Zo

it works on solara...

0
0
Ma

@ZoRo how did you get it to work?

0
0
Ja

inf money is really good amazing script ngl

0
0
KU

Start with loadstring and end of raw only i copy? Or all of it the script is not executing even i execute😭 "loadstring(game:HttpGet("https://pastefy.app/Rf8iYjYI/raw"))()"

0
0
Di

@KUPALKABABoss copy all script

0
0
ADVERTISEMENTREMOVE ADS