Advertisement
Guest User

FE Teleport, and Walkspeed

a guest
Sep 3rd, 2017
6,935
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.82 KB | None | 0 0
  1. --[[
  2.  _____          
  3. /__   \__ _  ___
  4.   / /\/ _` |/ __|
  5.  / / | (_| | (__
  6.  \/   \__,_|\___|
  7.                  
  8. Created 9/3/2017
  9. Note that this works in 99% of filtering enabled games and there is no need to exit the script below
  10. ]]--
  11. Player = game.Players.LocalPlayer
  12. Gui = Instance.new("ScreenGui")
  13. Gui.Parent = Player.PlayerGui
  14. F = Instance.new("Frame")
  15. F.BackgroundTransparency = 0.65
  16. F.BorderSizePixel = 0
  17. F.Position = UDim2.new(-0.008, 0,0.406, 0)
  18. F.Size = UDim2.new(0,50,0,100)
  19. Gui.Parent = Player.PlayerGui
  20. Gui.Name = "FEGui"
  21. F.Parent = Gui
  22. SL = Instance.new("ImageButton",F)
  23. SL.Name = "Sprint"
  24. SL.Size = UDim2.new(0,50,0,50)
  25. SL.Image = "rbxassetid://94366992"
  26. SL.BackgroundTransparency = 1
  27. SL.BorderSizePixel = 0
  28. TL = Instance.new("ImageButton",F)
  29. TL.Name = "Teleport"
  30. TL.Position = UDim2.new(0,0,0.5,0)
  31. TL.Size = UDim2.new(0,50,0,50)
  32. TL.Image = "rbxassetid://282021040"
  33. TL.ImageColor3 = Color3.new(5,5,5)
  34. TL.BackgroundTransparency = 1
  35. TL.BorderSizePixel = 0
  36. SS = Instance.new("TextBox",F)
  37. SS.Name = "SS"
  38. SS.BackgroundColor3 = Color3.new(77,77,77)
  39. SS.BackgroundTransparency = 0.35
  40. SS.BorderSizePixel = 0
  41. SS.Position = UDim2.new(1,0,0,0)
  42. SS.Size = UDim2.new(0,75,0,25)
  43. SS.Text = "Speed"
  44. SS.Font = Enum.Font.Code
  45. TS = Instance.new("TextBox",F)
  46. TS.Name = "TS"
  47. TS.BackgroundColor3 = Color3.new(77,77,77)
  48. TS.BackgroundTransparency = 0.35
  49. TS.BorderSizePixel = 0
  50. TS.Position = UDim2.new(1,0,0.75,0)
  51. TS.Size = UDim2.new(0,75,0,25)
  52. TS.Text = "Player"
  53. TS.Font = Enum.Font.Code
  54. Tap = Instance.new("TextButton",F)
  55. Tap.Name = "Tap"
  56. Tap.BackgroundColor3 = Color3.new(77,77,77)
  57. Tap.BackgroundTransparency = 0.35
  58. Tap.BorderSizePixel = 0
  59. Tap.Position = UDim2.new(1,0,0.375,0)
  60. Tap.Size = UDim2.new(0,100,0,25)
  61. Tap.Text = "Press E to TP"
  62. Tap.Font = Enum.Font.Code
  63. EXS = Instance.new("TextButton",SS)
  64. EXS.Name = "EXS"
  65. EXS.BackgroundTransparency = 0.75
  66. EXS.Position = UDim2.new(1,0,0,0)
  67. EXS.Size = UDim2.new(0,25,0,25)
  68. EXS.Text = "Run"
  69. EXS.Font = Enum.Font.Fantasy
  70. EXTP = Instance.new("TextButton",TS)
  71. EXTP.Name = "EXTP"
  72. EXTP.BackgroundTransparency = 0.75
  73. EXTP.Position = UDim2.new(1,0,0,0)
  74. EXTP.Size = UDim2.new(0,25,0,25)
  75. EXTP.Text = "TP"
  76. EXTP.Font = Enum.Font.Fantasy
  77. EXS.MouseButton1Click:Connect(function()
  78. local Speed = SS.Text
  79. game.Workspace[Player.Name].Humanoid.WalkSpeed = Speed
  80. end)
  81. --CreatedByTactical
  82. EXTP.MouseButton1Click:Connect(function()
  83. local Target = TS.Text
  84. local Humanoid = Player.Character.HumanoidRootPart
  85. Humanoid.CFrame = game.Workspace[Target].Head.CFrame + Vector3.new(15,0,15)
  86. end)
  87. Tap.MouseButton1Click:Connect(function()
  88. plr = game.Players.LocalPlayer
  89. hum = plr.Character.HumanoidRootPart
  90. mouse = plr:GetMouse()
  91. mouse.KeyDown:connect(function(key)
  92. if key == "e" then
  93. if mouse.Target then
  94. hum.CFrame = CFrame.new(mouse.Hit.x, mouse.Hit.y + 5, mouse.Hit.z)
  95. end
  96. end
  97. end)
  98. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement