thi2004

Untitled

Oct 26th, 2018
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.79 KB | None | 0 0
  1. --Gui Make By ClarkShadow(Discord Name)--
  2. --Scripts Belong To V3rmillion--
  3. --From Group Chia Se Hack Roblox(Facebook Group)--
  4. --Don't Steal It To Other Group--
  5. local Main = 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. local Logo = Instance.new("ImageLabel")
  16. local TextLabel = Instance.new("TextLabel")
  17. --Properties:
  18. Main.Name = "Main"
  19. Main.Parent = game.CoreGui
  20.  
  21. OpenGui.Name = "Open Gui"
  22. OpenGui.Parent = Main
  23. OpenGui.BackgroundColor3 = Color3.new(1, 1, 1)
  24. OpenGui.Position = UDim2.new(0, 0, 0.442231059, 0)
  25. OpenGui.Size = UDim2.new(0, 100, 0, 44)
  26. OpenGui.Style = Enum.FrameStyle.DropShadow
  27. OpenGui.Active = true
  28.  
  29. Open.Name = "Open"
  30. Open.Parent = OpenGui
  31. Open.BackgroundColor3 = Color3.new(1, 0.333333, 0)
  32. Open.Position = UDim2.new(-0.070737794, 0, -0.126033098, 0)
  33. Open.Size = UDim2.new(0, 98, 0, 36)
  34. Open.Font = Enum.Font.SourceSans
  35. Open.Text = "Open"
  36. Open.TextColor3 = Color3.new(1, 0, 0)
  37. Open.TextSize = 14
  38. Open.MouseButton1Down:connect(function()
  39. MainGui:TweenPosition(UDim2.new(0.22, 0,0.201, 0), 'Out','Bounce', 1)
  40. OpenGui.Visible = false
  41. end)
  42.  
  43. MainGui.Name = "Main Gui"
  44. MainGui.Parent = Main
  45. MainGui.BackgroundColor3 = Color3.new(1, 1, 1)
  46. MainGui.BorderSizePixel = 2
  47. MainGui.Position = UDim2.new(0.0790000036, 0, 1.70000005, 0)
  48. MainGui.Size = UDim2.new(0, 435, 0, 245)
  49. MainGui.Style = Enum.FrameStyle.DropShadow
  50. MainGui.Active = true
  51. MainGui.Draggable = true
  52.  
  53. KillScript.Name = "Kill Script"
  54. KillScript.Parent = MainGui
  55. KillScript.BackgroundColor3 = Color3.new(0, 1, 0.498039)
  56. KillScript.Position = UDim2.new(0.0320788883, 0, 0.175395608, 0)
  57. KillScript.Size = UDim2.new(0, 171, 0, 50)
  58. KillScript.Font = Enum.Font.SourceSans
  59. KillScript.Text = "Active Kill Script"
  60. KillScript.TextColor3 = Color3.new(0.333333, 0, 0)
  61. KillScript.TextSize = 14
  62. KillScript.MouseButton1Down:connect(function()
  63. key = nil
  64. gm = game.ReplicatedStorage.GamemodeRemotes
  65. r = game.ReplicatedStorage.CurrentKillRemote
  66. game.ReplicatedStorage.Remotes.Authenticator2.OnClientEvent:connect(function(pw)
  67. key = pw
  68. end)
  69. player = game.Players.LocalPlayer
  70. player.Chatted:connect(function(msg)
  71. if string.lower(string.sub(msg, 1, 7)) == "/e kill" then
  72. kill(string.sub(msg, 9))
  73. end
  74. end)
  75.  
  76. function kill(plr)
  77. for i, v in pairs(game.Players:GetPlayers()) do
  78. if string.lower(string.sub(v.Name, 1, string.len(plr))) == string.lower(plr) and v.Name ~= game.Players.LocalPlayer.Name then
  79. if key ~= nil and (v.Backpack:FindFirstChild("Knife") or (v.Character ~= nil and v.Character:FindFirstChild("Knife"))) then
  80. r.Value:FireServer(v, key)
  81. wait(0.5)
  82. end
  83. end
  84. end
  85. end
  86. end)
  87.  
  88. OpenOtherGui.Name = "Open Other Gui"
  89. OpenOtherGui.Parent = MainGui
  90. OpenOtherGui.BackgroundColor3 = Color3.new(0, 1, 0.498039)
  91. OpenOtherGui.Position = UDim2.new(0.550937891, 0, 0.196906164, 0)
  92. OpenOtherGui.Size = UDim2.new(0, 175, 0, 50)
  93. OpenOtherGui.Font = Enum.Font.SourceSans
  94. OpenOtherGui.Text = "Open Gui Candy Corn Grabber"
  95. OpenOtherGui.TextColor3 = Color3.new(0.333333, 0, 0)
  96. OpenOtherGui.TextSize = 14
  97. OpenOtherGui.MouseButton1Down:connect(function()
  98. game.Workspace.EventCurrency.ChildAdded:Connect(function(c)
  99. c.CanCollide = false
  100. c.Position = game.Players.LocalPlayer.Character.Head.Position
  101. end)
  102.  
  103. CandyText = game.Players.LocalPlayer.PlayerGui.ScreenGui.UI.Shop.TopBar.UtilBar.EventCurrency.TextLabel
  104. StartA = tonumber(CandyText.Text)
  105.  
  106. UI = Instance.new("ScreenGui", game.CoreGui)
  107. UI.Name = "Candy Counter"
  108.  
  109. Frame = Instance.new("Frame", UI)
  110. Frame.Name = "CandyEvent"
  111. Frame.Size = UDim2.new(0.15, 0, 0.2, 0)
  112. Frame.Position = UDim2.new(0.3, 0, 0.1, 0)
  113. Frame.BackgroundColor3 = Color3.new(0, 1, 1)
  114. Frame.BackgroundTransparency = 0.6
  115. Frame.Draggable = true
  116. Frame.Active = true
  117.  
  118. Bar = Instance.new("Frame", Frame)
  119. Bar.Name = "Bar"
  120. Bar.Size = UDim2.new(1, 0, 0.15, 0)
  121. Bar.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  122. Bar.BackgroundTransparency = 0.2
  123.  
  124. Cand = Instance.new("TextLabel", Frame)
  125. Cand.Name = "Candy Counter Frame"
  126. Cand.Size = UDim2.new(0.8, 0, 0.2, 0)
  127. Cand.Position = UDim2.new(0.1, 0, 0.25, 0)
  128. Cand.TextScaled = true
  129. Cand.Text = "Candy: "..CandyText.Text
  130. Cand.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  131. Cand.BackgroundTransparency = 0.2
  132. Cand.TextColor3 = Color3.new(1, 1, 1)
  133.  
  134. AddedCand = Instance.new("TextLabel", Frame)
  135. AddedCand.Name = "Added Candy Frame"
  136. AddedCand.Size = UDim2.new(0.8, 0, 0.2, 0)
  137. AddedCand.Position = UDim2.new(0.1, 0, 0.65, 0)
  138. AddedCand.TextScaled = true
  139. AddedCand.Text = "Candy Added: 0"
  140. AddedCand.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  141. AddedCand.BackgroundTransparency = 0.2
  142. AddedCand.TextColor3 = Color3.new(1, 1, 1)
  143.  
  144. CandyText:GetPropertyChangedSignal("Text"):connect(function()
  145. if tonumber(CandyText.Text)<StartA then
  146. StartA = tonumber(CandyText.Text)
  147. print("Lower")
  148. end
  149. Cand.Text = "Candy: "..CandyText.Text
  150. AddedCand.Text = "Candy Added: ".. tostring(tonumber(CandyText.Text) - StartA)
  151. end)
  152.  
  153. end)
  154.  
  155. Tilte.Name = "Tilte"
  156. Tilte.Parent = MainGui
  157. Tilte.BackgroundColor3 = Color3.new(1, 0.333333, 0)
  158. Tilte.Position = UDim2.new(-0.00816594251, 0, -0.000426318031, 0)
  159. Tilte.Size = UDim2.new(0, 391, 0, 27)
  160. Tilte.Font = Enum.Font.SourceSans
  161. Tilte.Text = "Assassin Gui"
  162. Tilte.TextColor3 = Color3.new(0, 0, 0)
  163. Tilte.TextSize = 14
  164.  
  165. Credits.Name = "Credits"
  166. Credits.Parent = MainGui
  167. Credits.BackgroundColor3 = Color3.new(1, 0.333333, 0)
  168. Credits.BorderColor3 = Color3.new(0, 0, 0)
  169. Credits.Position = UDim2.new(-0.00370448269, 0, 0.90946281, 0)
  170. Credits.Size = UDim2.new(0, 422, 0, 27)
  171. Credits.Font = Enum.Font.SourceSans
  172. Credits.Text = "Gui Make By ClarkShadow#1097 And Script Belong To V3rmillion"
  173. Credits.TextColor3 = Color3.new(0, 0, 0)
  174. Credits.TextSize = 14
  175.  
  176. KeyBind.Name = "Key Bind"
  177. KeyBind.Parent = MainGui
  178. KeyBind.BackgroundColor3 = Color3.new(0.333333, 1, 1)
  179. KeyBind.Position = UDim2.new(0.0784614682, 0, 0.461539358, 0)
  180. KeyBind.Size = UDim2.new(0, 131, 0, 42)
  181. KeyBind.Font = Enum.Font.SourceSans
  182. KeyBind.Text = "Key Bind : /e kill"
  183. KeyBind.TextColor3 = Color3.new(0, 0, 0)
  184. KeyBind.TextSize = 14
  185.  
  186. Close.Name = "Close"
  187. Close.Parent = MainGui
  188. Close.BackgroundColor3 = Color3.new(1, 0.333333, 0)
  189. Close.Position = UDim2.new(0.924828291, 0, -0.000398471951, 0)
  190. Close.Size = UDim2.new(0, 33, 0, 27)
  191. Close.Font = Enum.Font.SourceSans
  192. Close.Text = "X"
  193. Close.TextColor3 = Color3.new(1, 0, 0)
  194. Close.TextSize = 14
  195. Close.MouseButton1Down:connect(function()
  196. MainGui:TweenPosition(UDim2.new(0.079, 0, 1.7, 0), 'Out','Bounce', 1)
  197. OpenGui.Visible = true
  198. end)
  199.  
  200. Logo.Name = "Logo"
  201. Logo.Parent = Main
  202. Logo.BackgroundTransparency = 1
  203. Logo.BackgroundColor3 = Color3.new(1, 1, 1)
  204. Logo.Position = UDim2.new(0.183254182, 0, 0.201402411, 0)
  205. Logo.Size = UDim2.new(0, 556, 0, 284)
  206. Logo.Image = "rbxassetid://2524583203"
  207. Logo.ImageTransparency = 1
  208.  
  209. TextLabel.Parent = Logo
  210. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  211. TextLabel.BackgroundTransparency = 1
  212. TextLabel.Position = UDim2.new(0, 0, 1.04929578, 0)
  213. TextLabel.Size = UDim2.new(0, 556, 0, 50)
  214. TextLabel.Font = Enum.Font.SourceSans
  215. TextLabel.Text = "CREATE : THI"
  216. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  217. TextLabel.TextSize = 30
  218. TextLabel.TextTransparency = 1
  219.  
  220. wait(0.03)
  221. game.CoreGui.Main.Logo.ImageTransparency = 1
  222. game.CoreGui.Main.Logo.TextLabel.TextTransparency = 1
  223. wait(0.03)
  224. game.CoreGui.Main.Logo.ImageTransparency = 0.9
  225. game.CoreGui.Main.Logo.TextLabel.TextTransparency = 0.9
  226. wait(0.03)
  227. game.CoreGui.Main.Logo.ImageTransparency = 0.8
  228. game.CoreGui.Main.Logo.TextLabel.TextTransparency = 0.8
  229. wait(0.03)
  230. game.CoreGui.Main.Logo.ImageTransparency = 0.7
  231. game.CoreGui.Main.Logo.TextLabel.TextTransparency = 0.7
  232. wait(0.03)
  233. game.CoreGui.Main.Logo.ImageTransparency = 0.6
  234. game.CoreGui.Main.Logo.TextLabel.TextTransparency = 0.6
  235. wait(0.03)
  236. game.CoreGui.Main.Logo.ImageTransparency = 0.5
  237. game.CoreGui.Main.Logo.TextLabel.TextTransparency = 0.5
  238. wait(0.03)
  239. game.CoreGui.Main.Logo.ImageTransparency = 0.4
  240. game.CoreGui.Main.Logo.TextLabel.TextTransparency = 0.4
  241. wait(0.03)
  242. game.CoreGui.Main.Logo.ImageTransparency = 0.3
  243. game.CoreGui.Main.Logo.TextLabel.TextTransparency = 0.3
  244. wait(0.03)
  245. game.CoreGui.Main.Logo.ImageTransparency = 0.2
  246. game.CoreGui.Main.Logo.TextLabel.TextTransparency = 0.2
  247. wait(0.03)
  248. game.CoreGui.Main.Logo.TextLabel.TextTransparency = 0.1
  249. game.CoreGui.Main.Logo.ImageTransparency = 0.1
  250. wait(0.03)
  251. game.CoreGui.Main.Logo.TextLabel.TextTransparency = 0
  252. game.CoreGui.Main.Logo.ImageTransparency = 0
  253. wait(3.5)
  254. game.CoreGui.Main.Logo.ImageTransparency = 0.1
  255. game.CoreGui.Main.Logo.TextLabel.TextTransparency = 0.1
  256. wait(0.03)
  257. game.CoreGui.Main.Logo.ImageTransparency = 0.2
  258. game.CoreGui.Main.Logo.TextLabel.TextTransparency = 0.2
  259. wait(0.03)
  260. game.CoreGui.Main.Logo.ImageTransparency = 0.3
  261. game.CoreGui.Main.Logo.TextLabel.TextTransparency = 0.3
  262. wait(0.03)
  263. game.CoreGui.Main.Logo.ImageTransparency = 0.4
  264. game.CoreGui.Main.Logo.TextLabel.TextTransparency = 0.4
  265. wait(0.03)
  266. game.CoreGui.Main.Logo.ImageTransparency = 0.5
  267. game.CoreGui.Main.Logo.TextLabel.TextTransparency = 0.5
  268. wait(0.03)
  269. game.CoreGui.Main.Logo.ImageTransparency = 0.6
  270. game.CoreGui.Main.Logo.TextLabel.TextTransparency = 0.6
  271. wait(0.03)
  272. game.CoreGui.Main.Logo.ImageTransparency = 0.7
  273. game.CoreGui.Main.Logo.TextLabel.TextTransparency = 0.7
  274. wait(0.03)
  275. game.CoreGui.Main.Logo.ImageTransparency = 0.8
  276. game.CoreGui.Main.Logo.TextLabel.TextTransparency = 0.8
  277. wait(0.03)
  278. game.CoreGui.Main.Logo.ImageTransparency = 0.9
  279. game.CoreGui.Main.Logo.TextLabel.TextTransparency = 0.9
  280. wait(0.03)
  281. game.CoreGui.Main.Logo.TextLabel.TextTransparency = 1
  282. game.CoreGui.Main.Logo.ImageTransparency = 1
  283. game.CoreGui.Main.Logo.Visible = false
Add Comment
Please, Sign In to add comment