· 8 years ago · Dec 16, 2017, 10:16 PM
1print("D-Day Remastered GUI Loaded")
2print("By JumboLumbo#9853")
3print("Enjoy!")
4-- Objects
5
6local DDayGUI = Instance.new("ScreenGui")
7local Main = Instance.new("Frame")
8local Title = Instance.new("Frame")
9local Shadow = Instance.new("Frame")
10local TitleText = Instance.new("TextLabel")
11local NameBox = Instance.new("TextBox")
12local TargetText = Instance.new("TextLabel")
13local KillButton = Instance.new("TextButton")
14local KillAllButton = Instance.new("TextButton")
15local ESPText = Instance.new("TextLabel")
16local ESPButton = Instance.new("TextButton")
17
18-- Properties
19
20DDayGUI.Name = "DDayGUI"
21DDayGUI.Parent = game.Players.LocalPlayer.PlayerGui
22
23Main.Name = "Main"
24Main.Parent = DDayGUI
25Main.BackgroundColor3 = Color3.new(1, 1, 1)
26Main.BorderColor3 = Color3.new(1, 1, 1)
27Main.Position = UDim2.new(0, 15, 0, 517)
28Main.Size = UDim2.new(0, 190, 0, 156)
29
30Title.Name = "Title"
31Title.Parent = Main
32Title.BackgroundColor3 = Color3.new(1, 0, 0)
33Title.BorderColor3 = Color3.new(1, 0, 0)
34Title.Size = UDim2.new(0, 190, 0, 30)
35
36Shadow.Name = "Shadow"
37Shadow.Parent = Title
38Shadow.BackgroundColor3 = Color3.new(0.713726, 0, 0)
39Shadow.BorderColor3 = Color3.new(0.713726, 0, 0)
40Shadow.Position = UDim2.new(0, 0, 0, 25)
41Shadow.Size = UDim2.new(0, 190, 0, 5)
42
43TitleText.Name = "TitleText"
44TitleText.Parent = Title
45TitleText.BackgroundColor3 = Color3.new(1, 1, 1)
46TitleText.BackgroundTransparency = 1
47TitleText.Position = UDim2.new(0, 0, 0, 1)
48TitleText.Size = UDim2.new(0, 190, 0, 22)
49TitleText.Font = Enum.Font.SourceSansBold
50TitleText.FontSize = Enum.FontSize.Size24
51TitleText.Text = "D-Day Remastered"
52TitleText.TextColor3 = Color3.new(1, 1, 1)
53TitleText.TextSize = 20
54
55NameBox.Name = "NameBox"
56NameBox.Parent = Main
57NameBox.BackgroundColor3 = Color3.new(1, 1, 1)
58NameBox.BorderColor3 = Color3.new(1, 0, 0)
59NameBox.Position = UDim2.new(0, 10, 0, 50)
60NameBox.Size = UDim2.new(0, 170, 0, 25)
61NameBox.Font = Enum.Font.SourceSansLight
62NameBox.FontSize = Enum.FontSize.Size24
63NameBox.Text = "Name"
64NameBox.TextColor3 = Color3.new(1, 0, 0)
65NameBox.TextSize = 20
66NameBox.TextWrapped = true
67
68TargetText.Name = "TargetText"
69TargetText.Parent = Main
70TargetText.BackgroundColor3 = Color3.new(1, 1, 1)
71TargetText.BackgroundTransparency = 1
72TargetText.Position = UDim2.new(0, 40, 0, 30)
73TargetText.Size = UDim2.new(0, 105, 0, 20)
74TargetText.Font = Enum.Font.SourceSansBold
75TargetText.FontSize = Enum.FontSize.Size14
76TargetText.Text = "Target:"
77TargetText.TextColor3 = Color3.new(1, 0, 0)
78TargetText.TextSize = 14
79
80KillButton.Name = "KillButton"
81KillButton.Parent = Main
82KillButton.BackgroundColor3 = Color3.new(1, 1, 1)
83KillButton.BorderColor3 = Color3.new(1, 0, 0)
84KillButton.Position = UDim2.new(0, 10, 0, 85)
85KillButton.Size = UDim2.new(0, 170, 0, 20)
86KillButton.Font = Enum.Font.SourceSansBold
87KillButton.FontSize = Enum.FontSize.Size14
88KillButton.Text = "Kill Target"
89KillButton.TextColor3 = Color3.new(1, 0, 0)
90KillButton.TextSize = 14
91
92KillAllButton.Name = "KillAllButton"
93KillAllButton.Parent = Main
94KillAllButton.BackgroundColor3 = Color3.new(1, 1, 1)
95KillAllButton.BorderColor3 = Color3.new(1, 0, 0)
96KillAllButton.Position = UDim2.new(0, 10, 0, 115)
97KillAllButton.Size = UDim2.new(0, 75, 0, 30)
98KillAllButton.Font = Enum.Font.SourceSansBold
99KillAllButton.FontSize = Enum.FontSize.Size28
100KillAllButton.Text = "Kill All"
101KillAllButton.TextColor3 = Color3.new(1, 0, 0)
102KillAllButton.TextSize = 25
103KillAllButton.TextWrapped = true
104
105ESPText.Name = "ESPText"
106ESPText.Parent = Main
107ESPText.BackgroundColor3 = Color3.new(1, 1, 1)
108ESPText.BackgroundTransparency = 1
109ESPText.Position = UDim2.new(0, 95, 0, 115)
110ESPText.Size = UDim2.new(0, 35, 0, 30)
111ESPText.Font = Enum.Font.SourceSansBold
112ESPText.FontSize = Enum.FontSize.Size28
113ESPText.Text = "ESP:"
114ESPText.TextColor3 = Color3.new(1, 0, 0)
115ESPText.TextSize = 25
116
117ESPButton.Name = "ESPButton"
118ESPButton.Parent = Main
119ESPButton.BackgroundColor3 = Color3.new(1, 1, 1)
120ESPButton.BorderColor3 = Color3.new(1, 0, 0)
121ESPButton.Position = UDim2.new(0, 140, 0, 115)
122ESPButton.Size = UDim2.new(0, 40, 0, 30)
123ESPButton.Font = Enum.Font.SourceSansLight
124ESPButton.FontSize = Enum.FontSize.Size24
125ESPButton.Text = "OFF"
126ESPButton.TextColor3 = Color3.new(1, 0, 0)
127ESPButton.TextSize = 20
128
129local remote = game.ReplicatedStorage[">>>>>>"]
130local secretkey = "nice job decompiling skid"
131
132KillButton.MouseButton1Click:connect(function()
133 if game.Workspace[TargetText.Text] ~= nil then
134 print("Killed "..TargetText.Text)
135 remote:FireServer("hit.Parent", game.Workspace[TargetText.Text].Humanoid, secretkey, 100, -20)
136 end
137end)
138
139KillAllButton.MouseButton1Click:connect(function()
140 for i,v in pairs(game.Players:GetChildren()) do
141 print("Killed "..v.Name)
142 remote:FireServer("hit.Parent", game.Workspace[v.Name].Humanoid, secretkey, 100, -20)
143 end
144end)
145
146ESPButton.MouseButton1Click:connect(function()
147 if ESPButton.Text == "OFF" then
148 ESPButton.Text = "ON"
149 print("ESP is ON")
150 else
151 ESPButton.Text = "OFF"
152 print("ESP is OFF")
153 end
154end)