R

14anz exekutor

public
rrixh Apr 17, 2024 Never 60
Clone
Plaintext 14anz.exe.jar 114 lines (91 loc) | 3.44 KB
1
-- Gui to Lua
2
-- Version: 3.2
3
4
-- Instances:
5
6
local ScreenGui = Instance.new("ScreenGui")
7
local main = Instance.new("Frame")
8
local TextButton = Instance.new("TextButton")
9
local TextButton_2 = Instance.new("TextButton")
10
local UICorner = Instance.new("UICorner")
11
local TextBox = Instance.new("TextBox")
12
local UICorner_2 = Instance.new("UICorner")
13
local TextLabel = Instance.new("TextLabel")
14
15
--Properties:
16
17
ScreenGui.Parent = game.CorGui
18
ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
19
20
main.Name = "main"
21
main.Parent = ScreenGui
22
main.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
23
main.BorderColor3 = Color3.fromRGB(0, 0, 0)
24
main.BorderSizePixel = 0
25
main.Position = UDim2.new(0.275837988, 0, 0.235783637, 0)
26
main.Size = UDim2.new(0, 296, 0, 194)
27
28
TextButton.Parent = main
29
TextButton.BackgroundColor3 = Color3.fromRGB(0, 0, 255)
30
TextButton.BorderColor3 = Color3.fromRGB(0, 0, 0)
31
TextButton.BorderSizePixel = 0
32
TextButton.Position = UDim2.new(0, 0, 0.742268026, 0)
33
TextButton.Size = UDim2.new(0, 153, 0, 50)
34
TextButton.Font = Enum.Font.SourceSans
35
TextButton.Text = "execute"
36
TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
37
TextButton.TextScaled = true
38
TextButton.TextSize = 14.000
39
TextButton.TextWrapped = true
40
41
TextButton_2.Parent = TextButton
42
TextButton_2.BackgroundColor3 = Color3.fromRGB(0, 0, 255)
43
TextButton_2.BorderColor3 = Color3.fromRGB(0, 0, 0)
44
TextButton_2.BorderSizePixel = 0
45
TextButton_2.Position = UDim2.new(1.03921568, 0, 0, 0)
46
TextButton_2.Size = UDim2.new(0, 137, 0, 50)
47
TextButton_2.Font = Enum.Font.SourceSans
48
TextButton_2.Text = "clear"
49
TextButton_2.TextColor3 = Color3.fromRGB(0, 0, 0)
50
TextButton_2.TextScaled = true
51
TextButton_2.TextSize = 14.000
52
TextButton_2.TextWrapped = true
53
54
UICorner.Parent = TextButton_2
55
56
TextBox.Parent = TextButton_2
57
TextBox.BackgroundColor3 = Color3.fromRGB(85, 255, 255)
58
TextBox.BorderColor3 = Color3.fromRGB(0, 0, 0)
59
TextBox.BorderSizePixel = 0
60
TextBox.Position = UDim2.new(-1.16058397, 0, -2.33999991, 0)
61
TextBox.Size = UDim2.new(0, 296, 0, 105)
62
TextBox.Font = Enum.Font.SourceSans
63
TextBox.Text = ""
64
TextBox.TextColor3 = Color3.fromRGB(0, 0, 0)
65
TextBox.TextSize = 14.000
66
TextBox.TextWrapped = true
67
68
UICorner_2.Parent = TextButton
69
70
TextLabel.Parent = TextButton
71
TextLabel.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
72
TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
73
TextLabel.BorderSizePixel = 0
74
TextLabel.Position = UDim2.new(0, 0, -2.88000011, 0)
75
TextLabel.Size = UDim2.new(0, 296, 0, 27)
76
TextLabel.Font = Enum.Font.SourceSans
77
TextLabel.Text = "14anz executor"
78
TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
79
TextLabel.TextScaled = true
80
TextLabel.TextSize = 14.000
81
TextLabel.TextWrapped = true
82
83
-- Scripts:
84
85
local function IXAKEI_fake_script() -- TextButton_2.LocalScript
86
local script = Instance.new('LocalScript', TextButton_2)
87
88
script.Parent.MouseButton1Click:Connect(function()
89
script.Parent.Parent.Source.Text = ''
90
end)
91
92
end
93
coroutine.wrap(IXAKEI_fake_script)()
94
local function SZOH_fake_script() -- TextButton.LocalScript
95
local script = Instance.new('LocalScript', TextButton)
96
97
script.Parent.MouseButton1Click:Connect(function()
98
loadstring(script.Parent.Parent.Source.Text)()
99
end)
100
101
102
103
end
104
coroutine.wrap(SZOH_fake_script)()
105
local function WSGOOP_fake_script() -- main.LocalScript
106
local script = Instance.new('LocalScript', main)
107
108
script.Parent.Active = true
109
script.Parent.Draggable = true
110
111
112
113
end
114
coroutine.wrap(WSGOOP_fake_script)()