Advertisement
Daniel362009

MURDER PARTY SCRIPT

May 29th, 2023
1,878
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.38 KB | None | 0 0
  1. local haha = game.Workspace.Gems:GetDescendants()
  2. local safePlace
  3.  
  4.  
  5.  
  6.  
  7.  
  8. local function kill(player)
  9. local args = {
  10. [1] = player.UserId
  11. }
  12.  
  13. game:GetService("ReplicatedStorage").Events.Weapons.KnifeSwing:FireServer(unpack(args))
  14. end
  15. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  16. local Window = Library.CreateLib("murder party hax", "DarkTheme")
  17. local Game = Window:NewTab("Game")
  18. local MurderP = Game:NewSection("Murder Party")
  19. local AutoF = false
  20. local AutoFTele = false
  21. local ExpFarm = false
  22. local Creditse = Window:NewTab("Credits")
  23. local Credits = Creditse:NewSection("Haha yes")
  24. Credits:NewLabel("bianhquan12345: Tester and helper")
  25. Credits:NewLabel("vinhkhang100: Others")
  26. local value = Instance.new("NumberValue",game.Workspace)
  27. value.Name = "CheckT"
  28.  
  29. MurderP:NewToggle("Auto collect coins", "sdadsa", function(state)
  30. if state then
  31. AutoF = true
  32. else
  33. AutoF = false
  34. end
  35. end)
  36. game.Workspace.Time.Changed:Connect(function()
  37. if game.Workspace.Time.Value == 119 then
  38.  
  39. safePlace = Instance.new("Part",game.Workspace)
  40. safePlace.Anchored = true
  41. safePlace.Size = Vector3.new(6,1,6)
  42. safePlace.CFrame = CFrame.new(game.Players.LocalPlayer.character.HumanoidRootPart.Position) + Vector3.new(0,150,0)
  43.  
  44. if AutoF == true then
  45. game.Players.LocalPlayer.character.HumanoidRootPart.CFrame = CFrame.new(safePlace.Position)+Vector3.new(0,4,0)
  46. repeat
  47. for i,v in pairs(game.Workspace.Gems:GetDescendants()) do
  48. if v.Name == "TouchInterest" then
  49. firetouchinterest(game.Players.LocalPlayer.Character.Head, v.Parent,0)
  50. wait()
  51. end
  52. end
  53. until game.Players.LocalPlayer.MatchCurrency.Value == 15
  54.  
  55.  
  56.  
  57. end
  58. end
  59. end)
  60. local InfJUmp = false
  61. MurderP:NewToggle("Inf jump", "haha yes?", function(state)
  62. if state then
  63. InfJUmp = true
  64. else
  65. InfJUmp = false
  66. end
  67. end)
  68. game:GetService("UserInputService").JumpRequest:connect(function()
  69. if InfJUmp == true then
  70. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  71. end
  72. end)
  73. MurderP:NewButton("Teleport to map", "you only need this if you want to go out the safe place", function()
  74. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(12, 1210, 43)
  75. end)
  76. MurderP:NewButton("Teleport to safe place", "haha yes", function ()
  77. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(safePlace.Position) + Vector3.new(0,3,0)
  78. end)
  79. MurderP:NewButton("Collect coins", "this will auto collect coins for u", function()
  80. for i,v in pairs(game.Workspace.Gems:GetDescendants()) do
  81. if v.Name == "TouchInterest" then
  82. firetouchinterest(game.Players.LocalPlayer.Character.Head, v.Parent,0)
  83. wait(0.05)
  84. firetouchinterest(game.Players.LocalPlayer.Character.Head, v.Parent,1)
  85. end
  86. end
  87.  
  88. end)
  89. MurderP:NewToggle("Xp Farm(team chaos only)","the exp farm is still beta", function (state)
  90. if state then
  91. ExpFarm = true
  92. else
  93. ExpFarm = false
  94. end
  95. end)
  96. game.Workspace.Time.Changed:Connect(function()
  97. if game.Workspace.Time.Value == 119 then
  98. if ExpFarm == true then
  99. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  100. game.Players.LocalPlayer.character.Humanoid:EquipTool(v)
  101. end
  102. end
  103. end
  104. end)
  105. local noclip = false
  106. game:GetService("RunService").Stepped:Connect(function()
  107. if noclip then
  108. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  109. end
  110. end)
  111.  
  112. MurderP:NewButton("Esp", "haha yes", function()
  113.  
  114. --- Tut
  115.  
  116. local esp_settings = { ---- table for esp settings
  117. textsize = 8,
  118. colour = 255,255,255
  119. }
  120.  
  121. local gui = Instance.new("BillboardGui")
  122. local esp = Instance.new("TextLabel",gui) ---- new instances to make the billboard gui and the textlabel
  123.  
  124.  
  125.  
  126. gui.Name = "Cracked esp"; ---- properties of the esp
  127. gui.ResetOnSpawn = false
  128. gui.AlwaysOnTop = true;
  129. gui.LightInfluence = 0;
  130. gui.Size = UDim2.new(1.75, 0, 1.75, 0);
  131. esp.BackgroundColor3 = Color3.fromRGB(255, 255, 255);
  132. esp.Text = ""
  133. esp.Size = UDim2.new(0.0001, 0.00001, 0.0001, 0.00001);
  134. esp.BorderSizePixel = 4;
  135. esp.BorderColor3 = Color3.new(esp_settings.colour)
  136. esp.BorderSizePixel = 0
  137. esp.Font = "GothamSemibold"
  138. esp.TextSize = esp_settings.textsize
  139. esp.TextColor3 = Color3.fromRGB(esp_settings.colour)
  140.  
  141. game:GetService("RunService").RenderStepped:Connect(function()
  142. for i,v in pairs (game:GetService("Players"):GetPlayers()) do
  143. if v ~= game:GetService("Players").LocalPlayer and v.Character.Head:FindFirstChild("Cracked esp")==nil then
  144. esp.Text = "{"..v.Name.."}"
  145. gui:Clone().Parent = v.Character.Head
  146. end
  147. end
  148. end)
  149. game.Players.PlayerAdded:Connect(function()
  150.  
  151. --- Tut
  152.  
  153. local esp_settings = { ---- table for esp settings
  154. textsize = 8,
  155. colour = 255,255,255
  156. }
  157.  
  158. local gui = Instance.new("BillboardGui")
  159. local esp = Instance.new("TextLabel",gui) ---- new instances to make the billboard gui and the textlabel
  160.  
  161.  
  162.  
  163. gui.Name = "Cracked esp"; ---- properties of the esp
  164. gui.ResetOnSpawn = false
  165. gui.AlwaysOnTop = true;
  166. gui.LightInfluence = 0;
  167. gui.Size = UDim2.new(1.75, 0, 1.75, 0);
  168. esp.BackgroundColor3 = Color3.fromRGB(255, 255, 255);
  169. esp.Text = ""
  170. esp.Size = UDim2.new(0.0001, 0.00001, 0.0001, 0.00001);
  171. esp.BorderSizePixel = 4;
  172. esp.BorderColor3 = Color3.new(esp_settings.colour)
  173. esp.BorderSizePixel = 0
  174. esp.Font = "GothamSemibold"
  175. esp.TextSize = esp_settings.textsize
  176. esp.TextColor3 = Color3.fromRGB(esp_settings.colour)
  177.  
  178. game:GetService("RunService").RenderStepped:Connect(function()
  179. for i,v in pairs (game:GetService("Players"):GetPlayers()) do
  180. if v ~= game:GetService("Players").LocalPlayer and v.Character.Head:FindFirstChild("Cracked esp")==nil then
  181. esp.Text = "{"..v.Name.."}"
  182. gui:Clone().Parent = v.Character.Head
  183. end
  184. end
  185. end)
  186. end)
  187. end)
  188. MurderP:NewKeybind("Toggle gui", ".", Enum.KeyCode.LeftControl, function()
  189. Library:ToggleUI()
  190. end)
  191.  
  192. local SpamSwing = Instance.new("BoolValue", game.Workspace)
  193. local SpamHat = Instance.new("BoolValue", game.Workspace)
  194. MurderP:NewToggle("SpamSwing", ".", function(state)
  195. if state then
  196. SpamSwing.Value = true
  197. else
  198. SpamSwing.Value = false
  199. end
  200. end)
  201. MurderP:NewToggle("SpamHat", ".", function(state)
  202. if state then
  203. SpamHat.Value = true
  204. else
  205. SpamHat.Value = false
  206. end
  207. end)
  208. SpamSwing.Changed:Connect(function()
  209. if SpamSwing.Value == true then
  210. -- Script generated by SimpleSpy - credits to exx#9394
  211. repeat
  212. game:GetService("ReplicatedStorage").Events.Weapons.KnifeSwing:FireServer()
  213. wait(0.05)
  214. until SpamSwing.Value == false
  215. end
  216. end)
  217. SpamHat.Changed:Connect(function()
  218. if SpamHat.Value == true then
  219. -- Script generated by SimpleSpy - credits to exx#9394
  220. repeat
  221.  
  222. game:GetService("ReplicatedStorage").Events.Weapons.HatSwing:FireServer()
  223. wait(0.05)
  224. until SpamHat.Value == false
  225. end
  226. end)
  227. local currentSpeed = game.Players.LocalPlayer.character.Humanoid.WalkSpeed
  228. local currentJump = game.Players.LocalPlayer.character.Humanoid.JumpPower
  229. MurderP:NewSlider("Walkspeed", "fsasadads", 95, 16, function(s)
  230. currentSpeed = s
  231. end)
  232. MurderP:NewSlider("JumpPower", "fsasadads", 299, 50, function(s)
  233. currentJump = s
  234. end)
  235. while wait() do
  236. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = currentSpeed
  237. game.Players.LocalPlayer.Character.Humanoid.JumpPower = currentJump
  238. end
  239.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement