SHOW:
|
|
- or go back to the newest paste.
1 | local ScreenGui = Instance.new("ScreenGui") | |
2 | local Frame = Instance.new("Frame") | |
3 | local level7 = Instance.new("TextLabel") | |
4 | local scripty = Instance.new("ScrollingFrame") | |
5 | local executor = Instance.new("TextBox") | |
6 | local execute = Instance.new("TextButton") | |
7 | local clear = Instance.new("TextButton") | |
8 | ||
9 | ScreenGui.Parent = game.CoreGui | |
10 | ||
11 | Frame.Parent = ScreenGui | |
12 | Frame.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863) | |
13 | Frame.BorderColor3 = Color3.new(0, 0, 0) | |
14 | Frame.Draggable = true | |
15 | Frame.Position = UDim2.new(0, 300, 1, -210) | |
16 | Frame.Size = UDim2.new(0, 200, 0, 200) | |
17 | ||
18 | level7.Name = "level7" | |
19 | level7.Parent = Frame | |
20 | level7.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647) | |
21 | level7.BorderColor3 = Color3.new(0, 0, 0) | |
22 | level7.Size = UDim2.new(0, 200, 0, 20) | |
23 | level7.Font = Enum.Font.SciFi | |
24 | level7.FontSize = Enum.FontSize.Size14 | |
25 | level7.Text = "Level 7" | |
26 | level7.TextColor3 = Color3.new(1, 0.333333, 0) | |
27 | level7.TextScaled = true | |
28 | level7.TextStrokeTransparency = 0 | |
29 | level7.TextWrapped = true | |
30 | level7.TextXAlignment = Enum.TextXAlignment.Left | |
31 | ||
32 | scripty.Name = "scripty" | |
33 | scripty.Parent = Frame | |
34 | scripty.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863) | |
35 | scripty.BorderColor3 = Color3.new(1, 0.333333, 0) | |
36 | scripty.Position = UDim2.new(0, 10, 0, 30) | |
37 | scripty.Size = UDim2.new(0, 180, 0, 130) | |
38 | scripty.CanvasSize = UDim2.new(0, 0, 10, 0) | |
39 | scripty.ScrollBarThickness = 0 | |
40 | ||
41 | executor.Name = "executor" | |
42 | executor.Parent = scripty | |
43 | executor.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078) | |
44 | executor.BorderColor3 = Color3.new(1, 0.333333, 0) | |
45 | executor.Size = UDim2.new(1, 0, 1, 0) | |
46 | executor.ClearTextOnFocus = false | |
47 | executor.Font = Enum.Font.SciFi | |
48 | executor.FontSize = Enum.FontSize.Size18 | |
49 | executor.MultiLine = true | |
50 | executor.TextColor3 = Color3.new(1, 0.333333, 0) | |
51 | executor.TextStrokeTransparency = 0 | |
52 | executor.TextWrapped = true | |
53 | executor.TextXAlignment = Enum.TextXAlignment.Left | |
54 | executor.TextYAlignment = Enum.TextYAlignment.Top | |
55 | ||
56 | execute.Name = "execute" | |
57 | execute.Parent = Frame | |
58 | execute.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078) | |
59 | execute.BorderColor3 = Color3.new(1, 0.333333, 0) | |
60 | execute.Position = UDim2.new(0, 10, 1, -35) | |
61 | execute.Size = UDim2.new(1, -110, 0, 30) | |
62 | execute.Font = Enum.Font.SciFi | |
63 | execute.FontSize = Enum.FontSize.Size14 | |
64 | execute.Text = "Execute" | |
65 | execute.TextColor3 = Color3.new(1, 0.333333, 0) | |
66 | execute.TextScaled = true | |
67 | execute.TextStrokeTransparency = 0 | |
68 | execute.TextWrapped = true | |
69 | ||
70 | clear.Name = "clear" | |
71 | clear.Parent = Frame | |
72 | clear.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078) | |
73 | clear.BorderColor3 = Color3.new(1, 0.333333, 0) | |
74 | clear.Position = UDim2.new(1, -100, 1, -35) | |
75 | clear.Size = UDim2.new(1, -110, 0, 30) | |
76 | clear.Font = Enum.Font.SciFi | |
77 | clear.FontSize = Enum.FontSize.Size14 | |
78 | clear.Text = "Clear" | |
79 | clear.TextColor3 = Color3.new(1, 0.333333, 0) | |
80 | clear.TextScaled = true | |
81 | clear.TextStrokeTransparency = 0 | |
82 | clear.TextWrapped = true | |
83 | ||
84 | execute.MouseButton1Click:connect(function() | |
85 | loadstring(executor.Text)() | |
86 | end) | |
87 | ||
88 | clear.MouseButton1Click:connect(function() | |
89 | executor.Text = "" | |
90 | end) |