SHOW:
|
|
- or go back to the newest paste.
1 | --Made By aansaid#5966 | |
2 | ||
3 | local ScreenGui = Instance.new("ScreenGui") | |
4 | local Frame = Instance.new("Frame") | |
5 | local Killall = Instance.new("TextButton") | |
6 | - | local credit = Instance.new("TextButton") |
6 | + | local credit = Instance.new("TextLabel") |
7 | - | local credit2 = Instance.new("TextButton") |
7 | + | local credit2 = Instance.new("TextLabel") |
8 | local title = Instance.new("TextLabel") | |
9 | ||
10 | ScreenGui.Parent = game.CoreGui | |
11 | ||
12 | Frame.Parent = ScreenGui | |
13 | Frame.Active = true | |
14 | Frame.BackgroundColor3 = Color3.new(0, 0, 0) | |
15 | Frame.BackgroundTransparency = 0.44999998807907 | |
16 | Frame.ClipsDescendants = true | |
17 | Frame.Draggable = true | |
18 | Frame.Position = UDim2.new(0, 669, 0, 394) | |
19 | Frame.Selectable = true | |
20 | Frame.Size = UDim2.new(0, 280, 0, 196) | |
21 | ||
22 | Killall.Name = "Kill all" | |
23 | Killall.Parent = Frame | |
24 | Killall.BackgroundColor3 = Color3.new(0, 0, 0) | |
25 | Killall.BackgroundTransparency = 0.60000002384186 | |
26 | Killall.Position = UDim2.new(0, 40, 0, 123) | |
27 | Killall.Size = UDim2.new(0, 200, 0, 50) | |
28 | Killall.Font = Enum.Font.Fantasy | |
29 | Killall.Text = "Kill All" | |
30 | Killall.TextColor3 = Color3.new(1, 0, 0) | |
31 | Killall.TextScaled = true | |
32 | Killall.TextSize = 14 | |
33 | Killall.TextWrapped = true | |
34 | ||
35 | credit.Name = "credit" | |
36 | credit.Parent = Frame | |
37 | credit.BackgroundColor3 = Color3.new(0, 0, 0) | |
38 | credit.BackgroundTransparency = 0.5 | |
39 | credit.Position = UDim2.new(0, 0, 0, 48) | |
40 | credit.Size = UDim2.new(0, 280, 0, 24) | |
41 | credit.Font = Enum.Font.SciFi | |
42 | credit.Text = "Script made by RetardoGeraldo#6164" | |
43 | credit.TextColor3 = Color3.new(1, 0, 0) | |
44 | credit.TextSize = 16 | |
45 | credit.TextWrapped = true | |
46 | ||
47 | credit2.Name = "credit2" | |
48 | credit2.Parent = Frame | |
49 | credit2.BackgroundColor3 = Color3.new(0, 0, 0) | |
50 | credit2.BackgroundTransparency = 0.5 | |
51 | credit2.Position = UDim2.new(0, 0, 0, 74) | |
52 | credit2.Size = UDim2.new(0, 280, 0, 24) | |
53 | credit2.Font = Enum.Font.SciFi | |
54 | credit2.Text = "Gui Made by aansaid#5966" | |
55 | credit2.TextColor3 = Color3.new(1, 0, 0) | |
56 | credit2.TextSize = 16 | |
57 | credit2.TextWrapped = true | |
58 | ||
59 | title.Name = "title" | |
60 | title.Parent = Frame | |
61 | title.BackgroundColor3 = Color3.new(0, 0, 0) | |
62 | title.BackgroundTransparency = 0.5 | |
63 | title.Size = UDim2.new(0, 280, 0, 50) | |
64 | title.Font = Enum.Font.Fantasy | |
65 | title.Text = "Kill All In Top Roblox Runway Model" | |
66 | title.TextColor3 = Color3.new(1, 0, 0) | |
67 | title.TextScaled = true | |
68 | title.TextSize = 14 | |
69 | title.TextWrapped = true | |
70 | ||
71 | Killall.MouseButton1Click:connect(function() | |
72 | for i=1, 5 do | |
73 | local player = game:GetService('Players').LocalPlayer | |
74 | local kill = 22 | |
75 | local Event = player.PlayerGui.VoteFix ["OPEN/CLOSE"].RemoteEvent | |
76 | Event:FireServer(kill) | |
77 | end | |
78 | end) |