R

k00lkid exekutor

public
rrixh Apr 17, 2024 Never 50
Clone
Plaintext k00lkidexe.jar 124 lines (103 loc) | 4.04 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 Frame = Instance.new("Frame")
9
local c00lkiddexecutortext = Instance.new("TextLabel")
10
local Source = Instance.new("TextBox")
11
local TextButton = Instance.new("TextButton")
12
local TextButton_2 = Instance.new("TextButton")
13
local UICorner = Instance.new("UICorner")
14
local UICorner_2 = Instance.new("UICorner")
15
local UIListLayout = Instance.new("UIListLayout")
16
17
--Properties:
18
19
ScreenGui.Parent = game.CoreGui
20
ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
21
22
Main.Name = "Main"
23
Main.Parent = ScreenGui
24
Main.BackgroundColor3 = Color3.fromRGB(255, 170, 0)
25
Main.BorderColor3 = Color3.fromRGB(0, 0, 0)
26
Main.BorderSizePixel = 7
27
Main.Position = UDim2.new(0.00814711303, 0, 0.275658816, 0)
28
Main.Size = UDim2.new(0, 400, 0, 290)
29
30
Frame.Parent = Main
31
Frame.BackgroundColor3 = Color3.fromRGB(255, 85, 0)
32
Frame.BorderColor3 = Color3.fromRGB(0, 0, 0)
33
Frame.BorderSizePixel = 0
34
Frame.Size = UDim2.new(0, 400, 0, 290)
35
36
c00lkiddexecutortext.Name = "c00lkidd executor text"
37
c00lkiddexecutortext.Parent = Frame
38
c00lkiddexecutortext.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
39
c00lkiddexecutortext.BorderColor3 = Color3.fromRGB(0, 0, 0)
40
c00lkiddexecutortext.BorderSizePixel = 7
41
c00lkiddexecutortext.Size = UDim2.new(0, 400, 0, 50)
42
c00lkiddexecutortext.Font = Enum.Font.SourceSans
43
c00lkiddexecutortext.Text = "c00lkidd executor"
44
c00lkiddexecutortext.TextColor3 = Color3.fromRGB(85, 255, 0)
45
c00lkiddexecutortext.TextScaled = true
46
c00lkiddexecutortext.TextSize = 14.000
47
c00lkiddexecutortext.TextWrapped = true
48
49
Source.Name = "Source"
50
Source.Parent = c00lkiddexecutortext
51
Source.BackgroundColor3 = Color3.fromRGB(255, 170, 0)
52
Source.BorderColor3 = Color3.fromRGB(0, 0, 0)
53
Source.BorderSizePixel = 7
54
Source.Position = UDim2.new(0, 0, 1.63999999, 0)
55
Source.Size = UDim2.new(0, 400, 0, 156)
56
Source.Font = Enum.Font.Unknown
57
Source.MultiLine = true
58
Source.Text = "code here"
59
Source.TextColor3 = Color3.fromRGB(0, 0, 0)
60
Source.TextSize = 14.000
61
Source.TextXAlignment = Enum.TextXAlignment.Left
62
Source.TextYAlignment = Enum.TextYAlignment.Top
63
64
TextButton.Parent = Frame
65
TextButton.BackgroundColor3 = Color3.fromRGB(255, 255, 0)
66
TextButton.BorderColor3 = Color3.fromRGB(0, 0, 0)
67
TextButton.BorderSizePixel = 0
68
TextButton.Position = UDim2.new(0, 0, 0.844827592, 0)
69
TextButton.Size = UDim2.new(0, 177, 0, 45)
70
TextButton.Font = Enum.Font.SourceSans
71
TextButton.Text = "execute"
72
TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
73
TextButton.TextScaled = true
74
TextButton.TextSize = 14.000
75
TextButton.TextWrapped = true
76
77
TextButton_2.Parent = TextButton
78
TextButton_2.BackgroundColor3 = Color3.fromRGB(255, 255, 0)
79
TextButton_2.BorderColor3 = Color3.fromRGB(0, 0, 0)
80
TextButton_2.BorderSizePixel = 0
81
TextButton_2.Position = UDim2.new(1.19209039, 0, 0, 0)
82
TextButton_2.Size = UDim2.new(0, 189, 0, 45)
83
TextButton_2.Font = Enum.Font.SourceSans
84
TextButton_2.Text = "clear"
85
TextButton_2.TextColor3 = Color3.fromRGB(0, 0, 0)
86
TextButton_2.TextScaled = true
87
TextButton_2.TextSize = 14.000
88
TextButton_2.TextWrapped = true
89
90
UICorner.Parent = TextButton_2
91
92
UICorner_2.Parent = TextButton
93
94
UIListLayout.Parent = Main
95
UIListLayout.SortOrder = Enum.SortOrder.LayoutOrder
96
97
-- Scripts:
98
99
local function EVGCCT_fake_script() -- TextButton_2.LocalScript
100
local script = Instance.new('LocalScript', TextButton_2)
101
102
script.Parent.MouseButton1Click:Connect(function()
103
script.Parent.Parent.Source.Text = ''
104
end)
105
106
end
107
coroutine.wrap(EVGCCT_fake_script)()
108
local function OSWOOSG_fake_script() -- TextButton.LocalScript
109
local script = Instance.new('LocalScript', TextButton)
110
111
script.Parent.MouseButton1Click:Connect(function()
112
loadstring(script.Parent.Parent.Source.Text)()
113
end)
114
115
end
116
coroutine.wrap(OSWOOSG_fake_script)()
117
local function XINBYLZ_fake_script() -- Main.LocalScript
118
local script = Instance.new('LocalScript', Main)
119
120
script.Parent.Active = true
121
script.Parent.Draggable = true
122
123
end
124
coroutine.wrap(XINBYLZ_fake_script)()