Advertisement
Guest User

Untitled

a guest
Nov 14th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.31 KB | None | 0 0
  1. -- Objects
  2.  
  3. local Faggot = Instance.new("ScreenGui")
  4. local MainFrame = Instance.new("Frame")
  5. local MainLabel = Instance.new("TextLabel")
  6. local Credits = Instance.new("TextLabel")
  7. local TpClick = Instance.new("TextButton")
  8.  
  9. -- Properties
  10.  
  11. Faggot.Name = "Faggot"
  12. Faggot.Parent = game.CoreGui
  13.  
  14. MainFrame.Name = "Main Frame"
  15. MainFrame.Parent = Faggot
  16. MainFrame.Active = true
  17. MainFrame.BackgroundColor3 = Color3.new(0, 0.666667, 1)
  18. MainFrame.Draggable = true
  19. MainFrame.Position = UDim2.new(0.0399999991, 0, 0.272004902, 0)
  20. MainFrame.Selectable = true
  21. MainFrame.Size = UDim2.new(0, 361, 0, 273)
  22. MainFrame.Style = Enum.FrameStyle.DropShadow
  23.  
  24. MainLabel.Name = "Main Label"
  25. MainLabel.Parent = MainFrame
  26. MainLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  27. MainLabel.BackgroundTransparency = 1
  28. MainLabel.BorderColor3 = Color3.new(1, 1, 1)
  29. MainLabel.Position = UDim2.new(-0.00277008303, 0, 0, 0)
  30. MainLabel.Size = UDim2.new(0, 347, 0, 44)
  31. MainLabel.Font = Enum.Font.SourceSans
  32. MainLabel.FontSize = Enum.FontSize.Size32
  33. MainLabel.Text = "Admin Script V1"
  34. MainLabel.TextColor3 = Color3.new(1, 1, 1)
  35. MainLabel.TextSize = 30
  36.  
  37. Credits.Name = "Credits"
  38. Credits.Parent = MainFrame
  39. Credits.BackgroundColor3 = Color3.new(1, 1, 1)
  40. Credits.BackgroundTransparency = 1
  41. Credits.Position = UDim2.new(0, 0, 0.970695972, 0)
  42. Credits.Size = UDim2.new(0, 200, 0, 13)
  43. Credits.Font = Enum.Font.SourceSansBold
  44. Credits.FontSize = Enum.FontSize.Size14
  45. Credits.Text = "Made By: LoIMadBro"
  46. Credits.TextColor3 = Color3.new(1, 1, 1)
  47. Credits.TextSize = 14
  48. Credits.TextXAlignment = Enum.TextXAlignment.Left
  49.  
  50. TpClick.Name = "Tp Click"
  51. TpClick.Parent = MainFrame
  52. TpClick.BackgroundColor3 = Color3.new(0.113725, 0.423529, 1)
  53. TpClick.Position = UDim2.new(0.0429362878, 0, 0.249084249, 0)
  54. TpClick.Size = UDim2.new(0, 316, 0, 155)
  55. TpClick.Font = Enum.Font.SourceSansBold
  56. TpClick.FontSize = Enum.FontSize.Size60
  57. TpClick.Text = "Tp Click"
  58. TpClick.TextColor3 = Color3.new(1, 1, 1)
  59. TpClick.TextSize = 50
  60. TpClick.TextWrapped = true
  61. TpClick.MouseButton1Down:connect(function()
  62.  
  63. plr = game.Players.LocalPlayer
  64.  
  65. hum = plr.Character.HumanoidRootPart
  66.  
  67. mouse = plr:GetMouse()
  68.  
  69.  
  70.  
  71. mouse.KeyDown:connect(function(key)
  72.  
  73. if key == "e" then
  74.  
  75. if mouse.Target then
  76.  
  77. hum.CFrame = CFrame.new(mouse.Hit.x, mouse.Hit.y + 5, mouse.Hit.z)
  78.  
  79. end
  80.  
  81. end
  82. end)
  83.  
  84. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement