Advertisement
Guest User

Assassin Gui v1.0

a guest
Feb 20th, 2017
10,979
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.99 KB | None | 0 0
  1. local screenGui = Instance.new("ScreenGui")
  2. screenGui.Parent = game.Players.LocalPlayer.PlayerGui
  3. local frame = Instance.new("Frame")
  4. frame.Parent = screenGui
  5. frame.Size = UDim2.new(0, 200, 0, 300)
  6. frame.Position = UDim2.new(0, 50, 0, 600)
  7. frame.BackgroundColor3 = Color3.new(0.5098039215686275, 0.6705882352941176, 0.9725490196078431)
  8. local textLabel = Instance.new("TextLabel")
  9. textLabel.Parent = frame
  10. textLabel.Size = UDim2.new(1, 0, 0, 25)
  11. textLabel.Position = UDim2.new(0, 0, 0, 0)
  12. textLabel.TextScaled = false
  13. textLabel.TextWrapped = false
  14. textLabel.Text = "Assassin GUI v1.0"
  15. textLabel.BackgroundTransparency = 1
  16. local textLabel2 = Instance.new("TextLabel")
  17. textLabel2.Parent = frame
  18. textLabel2.Size = UDim2.new(1, 0, 0, 25)
  19. textLabel2.Position = UDim2.new(0, 0, 0, 25)
  20. textLabel2.TextScaled = false
  21. textLabel2.TextWrapped = false
  22. textLabel2.Text = "Created by Daddy Derek"
  23. textLabel2.BackgroundTransparency = 1
  24. local textButton = Instance.new("TextButton")
  25. textButton.Position = UDim2.new(0, 0, 0, 70)
  26. textButton.Size = UDim2.new(1, 0, 0, 25)
  27. textButton.Parent = frame
  28. textButton.Text = "Assassin Lobby Teleport (Must be in first person to kill.)"
  29. textButton.TextWrapped = true
  30. textButton.BackgroundTransparency = 1
  31. local textButton2 = Instance.new("TextButton")
  32. textButton2.Position = UDim2.new(0, 0, 0, 125)
  33. textButton2.Size = UDim2.new(1, 0, 0, 25)
  34. textButton2.Parent = frame
  35. textButton2.Text = "Assassin Teleport (Press R then stab.)"
  36. textButton2.TextWrapped = true
  37. textButton2.BackgroundTransparency = 1
  38. function lbbytp()
  39. for i = 1, math.huge, 1 do
  40. wait(0.5)
  41. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(293.300171, 499.592194, -1488.52454))
  42. yourtarget = game.Players.LocalPlayer.PlayerGui.UI.DEFAULT.Target.Frame.Hold.PlrName
  43. plr = game.Players:FindFirstChild(yourtarget.Text)
  44. plr.Character.Head.Position = game.Players.LocalPlayer.Character.Head.Position + Vector3.new(0,-1,2)
  45. end
  46. end
  47. function rtp()
  48. localmeme = game.Players.LocalPlayer.Name
  49. kek = game.Workspace.Lobby.ObbyEnd
  50. kek.CanCollide = false
  51. function onKeyPress(inputObject, gameProcessedEvent)
  52. if inputObject.KeyCode == Enum.KeyCode.R then
  53. rip = game.Players.LocalPlayer.PlayerGui.UI.DEFAULT.Target.Frame.Hold.PlrName.Text
  54. print("TPing "..rip)
  55. game.Workspace[localmeme].Torso.Anchored = true
  56. nam = game.Players[rip].Name
  57. lpChar = game.Players.LocalPlayer.Character["Right Arm"]
  58. local w = Instance.new("Weld", lpChar)
  59. w.Name = "Weld"
  60. w.Part0 = lpChar
  61. w.Part1 = game.Players[rip].Character.HumanoidRootPart
  62. w.C0 = lpChar.CFrame
  63. w.C1 = lpChar.CFrame
  64. wait(0.1)
  65. w:Destroy()
  66. game.Workspace[localmeme].Torso.Anchored = false
  67. wait(0.5)
  68. end
  69. end
  70.  
  71. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
  72.  
  73. function onKeyPress(inputObject, gameProcessedEvent)
  74. if inputObject.KeyCode == Enum.KeyCode.M then
  75. kek.CFrame = game.Players.LocalPlayer.Character.Torso.CFrame
  76. end
  77. end
  78. end
  79. textButton.MouseButton1Down:connect(lbbytp)
  80. textButton2.MouseButton1Down:connect(rtp)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement