Advertisement
liamglitches

Survivor GUI by NotJimbo#7666

May 1st, 2018
554
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.96 KB | None | 0 0
  1. -- GUI made by LiamGlitchesYT
  2. -- My Discord: NotJimbo#7666
  3. -- My V3RM: NotJimbo
  4. -- My YT: LiamGlitchesYT
  5.  
  6. local main = Instance.new("ScreenGui")
  7. local main_2 = Instance.new("Frame")
  8. local colors = Instance.new("Frame")
  9. local TextLabel = Instance.new("TextLabel")
  10. local clicktp = Instance.new("TextButton")
  11.  
  12. -- Properties
  13.  
  14. main.Name = "main"
  15. main.Parent = game.CoreGui
  16. main.Active = true
  17. main.Draggable = true
  18.  
  19. main_2.Name = "main"
  20. main_2.Parent = main
  21. main_2.Active = true
  22. main_2.BackgroundColor3 = Color3.new(1, 1, 1)
  23. main_2.BorderSizePixel = 0
  24. main_2.Position = UDim2.new(0.0103675779, 0, 0.689723313, 0)
  25. main_2.Size = UDim2.new(0, 178, 0, 148)
  26.  
  27. colors.Name = "colors"
  28. colors.Parent = main_2
  29. colors.BackgroundColor3 = Color3.new(0, 0.666667, 1)
  30. colors.BorderSizePixel = 0
  31. colors.Size = UDim2.new(0, 178, 0, 27)
  32.  
  33. TextLabel.Parent = colors
  34. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  35. TextLabel.BackgroundTransparency = 5
  36. TextLabel.Position = UDim2.new(0.00155697763, 0, -0.407407403, 0)
  37. TextLabel.Size = UDim2.new(0, 173, 0, 50)
  38. TextLabel.Font = Enum.Font.Highway
  39. TextLabel.Text = "Survivor ClickTP"
  40. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  41. TextLabel.TextSize = 20
  42.  
  43. clicktp.Name = "click-tp"
  44. clicktp.Parent = main_2
  45. clicktp.BackgroundColor3 = Color3.new(0, 0.666667, 1)
  46. clicktp.BorderSizePixel = 0
  47. clicktp.Position = UDim2.new(0.0883788168, 0, 0.265734255, 0)
  48. clicktp.Size = UDim2.new(0, 146, 0, 96)
  49. clicktp.Font = Enum.Font.SourceSans
  50. clicktp.Text = "Click TP"
  51. clicktp.TextColor3 = Color3.new(1, 1, 1)
  52. clicktp.TextSize = 25
  53.  
  54.  
  55. clicktp.MouseButton1Click:connect(function()
  56. mouse = game.Players.LocalPlayer:GetMouse()
  57. tool = Instance.new("Tool")
  58. tool.RequiresHandle = false
  59. tool.Name = "Click Teleport"
  60. tool.Activated:connect(function()
  61. local pos = mouse.Hit+Vector3.new(0,2.5,0)
  62. pos = CFrame.new(pos.X,pos.Y,pos.Z)
  63. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
  64. end)
  65. tool.Parent = game.Players.LocalPlayer.Backpack
  66. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement