Advertisement
veelymm

Assassin! Edited Script

Jul 26th, 2018
457
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.71 KB | None | 0 0
  1. game.Players.LocalPlayer.PlayerScripts.reeee:Destroy()
  2.  
  3. local Active = false
  4. local player = game.Players.LocalPlayer
  5. local mouse = player:GetMouse()
  6. local scg = Instance.new('ScreenGui',game.CoreGui)
  7. scg.ResetOnSpawn = false
  8. local text = Instance.new("TextLabel",scg)
  9. text.TextColor3 = Color3.new(255/255,122/255,122/255)
  10. text.TextScaled = true
  11. text.Text = "Press ' to toggle"
  12. text.Size = UDim2.new(0.1,0,0.1,0)
  13. text.Position = UDim2.new(0.003,0,0.830,0)
  14. text.Draggable = true
  15. -- Credit to timeless for help :3
  16. -- Credit to this other dude who released sword fight script gave me this idea
  17. --(( Edited by Filthee(Herrschel)
  18. --(( Edited the following:
  19. --(( Added text near bottom right to check current status
  20. --(( Changed ;toggle in chat to keypress
  21. --(( Press ' instead of saying ;toggle in chat to toggle
  22. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("oowee", "All")
  23. mouse.KeyDown:connect(function(key)
  24. if key == "'" then
  25. if Active then
  26. Active = false
  27. print("OFF")
  28. text.Text = "OFF"
  29. else
  30. Active = true
  31. print("ON")
  32. text.Text = "ON"
  33.  
  34. end
  35. end
  36. end)
  37.  
  38. Loop = coroutine.wrap(function()
  39. while wait() do
  40. pcall(function()
  41. if Active then
  42. local Current = game.CoreGui.ScreenGui.UI.Target.TargetText.Text
  43. game.Players[Current].Character.HumanoidRootPart.CFrame = CFrame.new(game.Players.LocalPlayer.Character.Knife.Handle.Position)
  44. Players.LocalPlayer.Character.HumanoidRootPart.Anchored = true
  45. end
  46. end)
  47. end
  48. end)
  49.  
  50. Loop()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement