Advertisement
Guest User

Untitled

a guest
Dec 16th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.98 KB | None | 0 0
  1. print("D-Day Remastered GUI Loaded")
  2. print("By JumboLumbo#9853")
  3. print("Enjoy!")
  4. -- Objects
  5.  
  6. local DDayGUI = Instance.new("ScreenGui")
  7. local Main = Instance.new("Frame")
  8. local Title = Instance.new("Frame")
  9. local Shadow = Instance.new("Frame")
  10. local TitleText = Instance.new("TextLabel")
  11. local NameBox = Instance.new("TextBox")
  12. local TargetText = Instance.new("TextLabel")
  13. local KillButton = Instance.new("TextButton")
  14. local KillAllButton = Instance.new("TextButton")
  15. local ESPText = Instance.new("TextLabel")
  16. local ESPButton = Instance.new("TextButton")
  17.  
  18. -- Properties
  19.  
  20. DDayGUI.Name = "DDayGUI"
  21. DDayGUI.Parent = game.Players.LocalPlayer.PlayerGui
  22.  
  23. Main.Name = "Main"
  24. Main.Parent = DDayGUI
  25. Main.BackgroundColor3 = Color3.new(1, 1, 1)
  26. Main.BorderColor3 = Color3.new(1, 1, 1)
  27. Main.Position = UDim2.new(0, 15, 0, 517)
  28. Main.Size = UDim2.new(0, 190, 0, 156)
  29.  
  30. Title.Name = "Title"
  31. Title.Parent = Main
  32. Title.BackgroundColor3 = Color3.new(1, 0, 0)
  33. Title.BorderColor3 = Color3.new(1, 0, 0)
  34. Title.Size = UDim2.new(0, 190, 0, 30)
  35.  
  36. Shadow.Name = "Shadow"
  37. Shadow.Parent = Title
  38. Shadow.BackgroundColor3 = Color3.new(0.713726, 0, 0)
  39. Shadow.BorderColor3 = Color3.new(0.713726, 0, 0)
  40. Shadow.Position = UDim2.new(0, 0, 0, 25)
  41. Shadow.Size = UDim2.new(0, 190, 0, 5)
  42.  
  43. TitleText.Name = "TitleText"
  44. TitleText.Parent = Title
  45. TitleText.BackgroundColor3 = Color3.new(1, 1, 1)
  46. TitleText.BackgroundTransparency = 1
  47. TitleText.Position = UDim2.new(0, 0, 0, 1)
  48. TitleText.Size = UDim2.new(0, 190, 0, 22)
  49. TitleText.Font = Enum.Font.SourceSansBold
  50. TitleText.FontSize = Enum.FontSize.Size24
  51. TitleText.Text = "D-Day Remastered"
  52. TitleText.TextColor3 = Color3.new(1, 1, 1)
  53. TitleText.TextSize = 20
  54.  
  55. NameBox.Name = "NameBox"
  56. NameBox.Parent = Main
  57. NameBox.BackgroundColor3 = Color3.new(1, 1, 1)
  58. NameBox.BorderColor3 = Color3.new(1, 0, 0)
  59. NameBox.Position = UDim2.new(0, 10, 0, 50)
  60. NameBox.Size = UDim2.new(0, 170, 0, 25)
  61. NameBox.Font = Enum.Font.SourceSansLight
  62. NameBox.FontSize = Enum.FontSize.Size24
  63. NameBox.Text = "Name"
  64. NameBox.TextColor3 = Color3.new(1, 0, 0)
  65. NameBox.TextSize = 20
  66. NameBox.TextWrapped = true
  67.  
  68. TargetText.Name = "TargetText"
  69. TargetText.Parent = Main
  70. TargetText.BackgroundColor3 = Color3.new(1, 1, 1)
  71. TargetText.BackgroundTransparency = 1
  72. TargetText.Position = UDim2.new(0, 40, 0, 30)
  73. TargetText.Size = UDim2.new(0, 105, 0, 20)
  74. TargetText.Font = Enum.Font.SourceSansBold
  75. TargetText.FontSize = Enum.FontSize.Size14
  76. TargetText.Text = "Target:"
  77. TargetText.TextColor3 = Color3.new(1, 0, 0)
  78. TargetText.TextSize = 14
  79.  
  80. KillButton.Name = "KillButton"
  81. KillButton.Parent = Main
  82. KillButton.BackgroundColor3 = Color3.new(1, 1, 1)
  83. KillButton.BorderColor3 = Color3.new(1, 0, 0)
  84. KillButton.Position = UDim2.new(0, 10, 0, 85)
  85. KillButton.Size = UDim2.new(0, 170, 0, 20)
  86. KillButton.Font = Enum.Font.SourceSansBold
  87. KillButton.FontSize = Enum.FontSize.Size14
  88. KillButton.Text = "Kill Target"
  89. KillButton.TextColor3 = Color3.new(1, 0, 0)
  90. KillButton.TextSize = 14
  91.  
  92. KillAllButton.Name = "KillAllButton"
  93. KillAllButton.Parent = Main
  94. KillAllButton.BackgroundColor3 = Color3.new(1, 1, 1)
  95. KillAllButton.BorderColor3 = Color3.new(1, 0, 0)
  96. KillAllButton.Position = UDim2.new(0, 10, 0, 115)
  97. KillAllButton.Size = UDim2.new(0, 75, 0, 30)
  98. KillAllButton.Font = Enum.Font.SourceSansBold
  99. KillAllButton.FontSize = Enum.FontSize.Size28
  100. KillAllButton.Text = "Kill All"
  101. KillAllButton.TextColor3 = Color3.new(1, 0, 0)
  102. KillAllButton.TextSize = 25
  103. KillAllButton.TextWrapped = true
  104.  
  105. ESPText.Name = "ESPText"
  106. ESPText.Parent = Main
  107. ESPText.BackgroundColor3 = Color3.new(1, 1, 1)
  108. ESPText.BackgroundTransparency = 1
  109. ESPText.Position = UDim2.new(0, 95, 0, 115)
  110. ESPText.Size = UDim2.new(0, 35, 0, 30)
  111. ESPText.Font = Enum.Font.SourceSansBold
  112. ESPText.FontSize = Enum.FontSize.Size28
  113. ESPText.Text = "ESP:"
  114. ESPText.TextColor3 = Color3.new(1, 0, 0)
  115. ESPText.TextSize = 25
  116.  
  117. ESPButton.Name = "ESPButton"
  118. ESPButton.Parent = Main
  119. ESPButton.BackgroundColor3 = Color3.new(1, 1, 1)
  120. ESPButton.BorderColor3 = Color3.new(1, 0, 0)
  121. ESPButton.Position = UDim2.new(0, 140, 0, 115)
  122. ESPButton.Size = UDim2.new(0, 40, 0, 30)
  123. ESPButton.Font = Enum.Font.SourceSansLight
  124. ESPButton.FontSize = Enum.FontSize.Size24
  125. ESPButton.Text = "OFF"
  126. ESPButton.TextColor3 = Color3.new(1, 0, 0)
  127. ESPButton.TextSize = 20
  128.  
  129. local remote = game.ReplicatedStorage[">>>>>>"]
  130. local secretkey = "nice job decompiling skid"
  131.  
  132. KillButton.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
  137. end)
  138.  
  139. KillAllButton.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
  144. end)
  145.  
  146. ESPButton.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
  154. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement