thi2004

Untitled

Oct 26th, 2018
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.60 KB | None | 0 0
  1. --Gui Make By ClarkShadow--
  2. --Scripts Belong To V3rmillion--
  3. --From Group Chia Se Hack Roblox--
  4. --Don't Steal It To Other Group--
  5. local Assasin = Instance.new("ScreenGui")
  6. local OpenGui = Instance.new("Frame")
  7. local Open = Instance.new("TextButton")
  8. local MainGui = Instance.new("Frame")
  9. local KillScript = Instance.new("TextButton")
  10. local OpenOtherGui = Instance.new("TextButton")
  11. local Tilte = Instance.new("TextLabel")
  12. local Credits = Instance.new("TextLabel")
  13. local KeyBind = Instance.new("TextLabel")
  14. local Close = Instance.new("TextButton")
  15. --Properties:
  16. Assasin.Name = "Assasin"
  17. Assasin.Parent = game.CoreGui
  18.  
  19. OpenGui.Name = "Open Gui"
  20. OpenGui.Parent = Assasin
  21. OpenGui.BackgroundColor3 = Color3.new(1, 1, 1)
  22. OpenGui.Position = UDim2.new(0, 0, 0.442231059, 0)
  23. OpenGui.Size = UDim2.new(0, 100, 0, 44)
  24. OpenGui.Style = Enum.FrameStyle.DropShadow
  25. OpenGui.Active = true
  26.  
  27. Open.Name = "Open"
  28. Open.Parent = OpenGui
  29. Open.BackgroundColor3 = Color3.new(1, 0.333333, 0)
  30. Open.Position = UDim2.new(-0.070737794, 0, -0.126033098, 0)
  31. Open.Size = UDim2.new(0, 98, 0, 36)
  32. Open.Font = Enum.Font.SourceSans
  33. Open.Text = "Open"
  34. Open.TextColor3 = Color3.new(1, 0, 0)
  35. Open.TextSize = 14
  36. Open.MouseButton1Down:connect(function()
  37. MainGui:TweenPosition(UDim2.new(0.22, 0,0.201, 0), 'Out','Bounce', 1)
  38. MainGui.Visible = true
  39. end)
  40.  
  41. MainGui.Name = "Main Gui"
  42. MainGui.Parent = Assasin
  43. MainGui.BackgroundColor3 = Color3.new(1, 1, 1)
  44. MainGui.Position = UDim2.new(0.0790000036, 0, 1.70000005, 0)
  45. MainGui.Size = UDim2.new(0, 435, 0, 245)
  46. MainGui.Visible = false
  47. MainGui.Style = Enum.FrameStyle.DropShadow
  48. MainGui.Active = true
  49. MainGui.Draggable = true
  50.  
  51. KillScript.Name = "Kill Script"
  52. KillScript.Parent = MainGui
  53. KillScript.BackgroundColor3 = Color3.new(0, 1, 0.498039)
  54. KillScript.Position = UDim2.new(0.0320788883, 0, 0.195803761, 0)
  55. KillScript.Size = UDim2.new(0, 171, 0, 50)
  56. KillScript.Font = Enum.Font.SourceSans
  57. KillScript.Text = "Active Kill Script"
  58. KillScript.TextColor3 = Color3.new(0.333333, 0, 0)
  59. KillScript.TextSize = 14
  60. KillScript.MouseButton1Down:connect(function()
  61. key = nil
  62. gm = game.ReplicatedStorage.GamemodeRemotes
  63. r = game.ReplicatedStorage.CurrentKillRemote
  64. game.ReplicatedStorage.Remotes.Authenticator2.OnClientEvent:connect(function(pw)
  65. key = pw
  66. end)
  67. player = game.Players.LocalPlayer
  68. player.Chatted:connect(function(msg)
  69. if string.lower(string.sub(msg, 1, 7)) == "/e kill" then
  70. kill(string.sub(msg, 9))
  71. end
  72. end)
  73.  
  74. function kill(plr)
  75. for i, v in pairs(game.Players:GetPlayers()) do
  76. if string.lower(string.sub(v.Name, 1, string.len(plr))) == string.lower(plr) and v.Name ~= game.Players.LocalPlayer.Name then
  77. if key ~= nil and (v.Backpack:FindFirstChild("Knife") or (v.Character ~= nil and v.Character:FindFirstChild("Knife"))) then
  78. r.Value:FireServer(v, key)
  79. wait(0.5)
  80. end
  81. end
  82. end
  83. end
  84. end)
  85.  
  86. OpenOtherGui.Name = "Open Other Gui"
  87. OpenOtherGui.Parent = MainGui
  88. OpenOtherGui.BackgroundColor3 = Color3.new(0, 1, 0.498039)
  89. OpenOtherGui.Position = UDim2.new(0.550937891, 0, 0.196906164, 0)
  90. OpenOtherGui.Size = UDim2.new(0, 175, 0, 50)
  91. OpenOtherGui.Font = Enum.Font.SourceSans
  92. OpenOtherGui.Text = "Open Gui Afk Candy Corn Grabber"
  93. OpenOtherGui.TextColor3 = Color3.new(0.333333, 0, 0)
  94. OpenOtherGui.TextSize = 14
  95. OpenOtherGui.MouseButton1Down:connect(function()
  96. game.Workspace.EventCurrency.ChildAdded:Connect(function(c)
  97. c.CanCollide = false
  98. c.Position = game.Players.LocalPlayer.Character.Head.Position
  99. end)
  100.  
  101. CandyText = game.Players.LocalPlayer.PlayerGui.ScreenGui.UI.Shop.TopBar.UtilBar.EventCurrency.TextLabel
  102. StartA = tonumber(CandyText.Text)
  103.  
  104. UI = Instance.new("ScreenGui", game.CoreGui)
  105. UI.Name = "Candy Counter"
  106.  
  107. Frame = Instance.new("Frame", UI)
  108. Frame.Name = "CandyEvent"
  109. Frame.Size = UDim2.new(0.15, 0, 0.2, 0)
  110. Frame.Position = UDim2.new(0.3, 0, 0.1, 0)
  111. Frame.BackgroundColor3 = Color3.new(0, 1, 1)
  112. Frame.BackgroundTransparency = 0.6
  113. Frame.Draggable = true
  114. Frame.Active = true
  115.  
  116. Bar = Instance.new("Frame", Frame)
  117. Bar.Name = "Bar"
  118. Bar.Size = UDim2.new(1, 0, 0.15, 0)
  119. Bar.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  120. Bar.BackgroundTransparency = 0.2
  121.  
  122. Cand = Instance.new("TextLabel", Frame)
  123. Cand.Name = "Candy Counter Frame"
  124. Cand.Size = UDim2.new(0.8, 0, 0.2, 0)
  125. Cand.Position = UDim2.new(0.1, 0, 0.25, 0)
  126. Cand.TextScaled = true
  127. Cand.Text = "Candy: "..CandyText.Text
  128. Cand.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  129. Cand.BackgroundTransparency = 0.2
  130. Cand.TextColor3 = Color3.new(1, 1, 1)
  131.  
  132. AddedCand = Instance.new("TextLabel", Frame)
  133. AddedCand.Name = "Added Candy Frame"
  134. AddedCand.Size = UDim2.new(0.8, 0, 0.2, 0)
  135. AddedCand.Position = UDim2.new(0.1, 0, 0.65, 0)
  136. AddedCand.TextScaled = true
  137. AddedCand.Text = "Candy Added: 0"
  138. AddedCand.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  139. AddedCand.BackgroundTransparency = 0.2
  140. AddedCand.TextColor3 = Color3.new(1, 1, 1)
  141.  
  142. CandyText:GetPropertyChangedSignal("Text"):connect(function()
  143. if tonumber(CandyText.Text)<StartA then
  144. StartA = tonumber(CandyText.Text)
  145. print("Lower")
  146. end
  147. Cand.Text = "Candy: "..CandyText.Text
  148. AddedCand.Text = "Candy Added: ".. tostring(tonumber(CandyText.Text) - StartA)
  149. end)
  150.  
  151. end)
  152.  
  153. Tilte.Name = "Tilte"
  154. Tilte.Parent = MainGui
  155. Tilte.BackgroundColor3 = Color3.new(1, 0.333333, 0)
  156. Tilte.Position = UDim2.new(-0.00586709194, 0, -0.000426314771, 0)
  157. Tilte.Size = UDim2.new(0, 391, 0, 27)
  158. Tilte.Font = Enum.Font.SourceSans
  159. Tilte.Text = "Assassin Gui"
  160. Tilte.TextColor3 = Color3.new(0, 0, 0)
  161. Tilte.TextSize = 14
  162.  
  163. Credits.Name = "Credits"
  164. Credits.Parent = MainGui
  165. Credits.BackgroundColor3 = Color3.new(1, 0.333333, 0)
  166. Credits.BorderColor3 = Color3.new(0, 0, 0)
  167. Credits.Position = UDim2.new(-0.00370448269, 0, 0.90946281, 0)
  168. Credits.Size = UDim2.new(0, 422, 0, 27)
  169. Credits.Font = Enum.Font.SourceSans
  170. Credits.Text = "Gui Make By ClarkShadow#1097 And Script Belong To V3rmillion"
  171. Credits.TextColor3 = Color3.new(0, 0, 0)
  172. Credits.TextSize = 14
  173.  
  174. KeyBind.Name = "Key Bind"
  175. KeyBind.Parent = MainGui
  176. KeyBind.BackgroundColor3 = Color3.new(0.333333, 1, 1)
  177. KeyBind.Position = UDim2.new(0.0784614682, 0, 0.461539358, 0)
  178. KeyBind.Size = UDim2.new(0, 131, 0, 42)
  179. KeyBind.Font = Enum.Font.SourceSans
  180. KeyBind.Text = "Key Bind : /e kill"
  181. KeyBind.TextColor3 = Color3.new(0, 0, 0)
  182. KeyBind.TextSize = 14
  183.  
  184. Close.Name = "Close"
  185. Close.Parent = MainGui
  186. Close.BackgroundColor3 = Color3.new(1, 0.333333, 0)
  187. Close.Position = UDim2.new(0.924828291, 0, -0.000398471951, 0)
  188. Close.Size = UDim2.new(0, 33, 0, 27)
  189. Close.Font = Enum.Font.SourceSans
  190. Close.Text = "X"
  191. Close.TextColor3 = Color3.new(1, 0, 0)
  192. Close.TextSize = 14
  193. Close.MouseButton1Down:connect(function()
  194. MainGui:TweenPosition(UDim2.new(0.079, 0, 1.7, 0), 'Out','Bounce', 1)
  195. end)
  196. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment