-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestgui.lua
More file actions
40 lines (32 loc) · 1.05 KB
/
testgui.lua
File metadata and controls
40 lines (32 loc) · 1.05 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
--https://v3rmillion.net/showthread.php?tid=1165658
-- fireztron @ v3rmillion
warn("USE THIS: https://raw.githubusercontent.com/fireztron/Trade-Tower/main/testguiv2.lua")
local StarterGui = game:GetService("StarterGui")
local function sendNotification(titleText, descText)
StarterGui:SetCore("SendNotification",{
Title = titleText;
Text = descText;
Icon = "";
Duration = 5;
})
end
sendNotification("PPHAX", "OUTDATED, USE NEW SCRIPT")
--// copy paste new script
local function copyLoadstring()
setclipboard('loadstring(game:HttpGet("https://raw.githubusercontent.com/fireztron/Trade-Tower/main/testguiv2.lua"))()')
end
local bindable = Instance.new("BindableFunction")
function bindable.OnInvoke(response)
if response == "Yes" then
copyLoadstring()
sendNotification("loadstring copied", "have fun :D")
end
end
StarterGui:SetCore("SendNotification", {
Title = "NEW LOADSTRING",
Text = "Copy to clipboard?",
Duration = 5,
Callback = bindable,
Button1 = "Yes",
Button2 = "No"
})