R

material

public
rrixh Apr 15, 2024 Never 68
Clone
Plaintext material-kashdrop.dh 81 lines (71 loc) | 2 KB
1
local Material = loadstring(game:HttpGet("https://raw.githubusercontent.com/rrixh/uwuware/main/dahood/material",true))()
2
local RunService = game:GetService("RunService")
3
local money = 0
4
RunService.RenderStepped:Connect(function()
5
local poo,_ = string.gsub(game.Players.LocalPlayer.PlayerGui.MainScreenGui.MoneyText.Text:split("$")[2], ",", "")
6
money = tonumber(poo)
7
print(tonumber(poo))
8
end)
9
10
local selektedKash = 100
11
local UI = Material.Load({
12
Title = "rrixh👺/lulaslollipop",
13
Style = 2,
14
SizeX = 200,
15
SizeY = 350,
16
Theme = "Dark"
17
})
18
19
function sendNotif(title, text)
20
game.StarterGui:SetCore("SendNotification", {
21
Title = title,
22
Text = text,
23
Duration = 5
24
})
25
end
26
27
function dropMoney(amount)
28
game:GetService("ReplicatedStorage").MainEvent:FireServer("DropMoney", "" .. amount)
29
sendNotif("Kash dropped!", "$" .. amount .. " dropped!")
30
31
end
32
33
34
local Page = UI.New({
35
Title = "Drop Kash"
36
})
37
38
Page.Button({
39
Text = "Drop All Kash",
40
Callback = function()
41
--local poggers = string.gsub(game.Players.LocalPlayer.PlayerGui.MainScreenGui.MoneyText.Text:split("$")[2], ",", "")
42
while money > 100 do
43
dropMoney(money > 10000 and 10000 or money)
44
wait(3)
45
end
46
--dropKash(game.Players.LocalPlayer.PlayerGui.MainScreenGui.MoneyText.Text:split("$")[1])
47
end,
48
Menu = {
49
Info = function(self)
50
UI.Banner({
51
Text = "Drops all your money"
52
})
53
end
54
}
55
})
56
57
Page.Slider({
58
Text = "Kash",
59
Min = 100,
60
Max = 10000,
61
Def = 0,
62
Callback = function(val)
63
selektedKash = val
64
end
65
})
66
67
Page.Button({
68
Text = "Drop Kash",
69
Callback = function()
70
dropMoney(selektedKash)
71
end,
72
Menu = {
73
Info = function(self)
74
UI.Banner({
75
Text = "Drops selected money"
76
})
77
end
78
}
79
})
80
81
--dropMoney(100)