PersonsadminTeam

Nerf Fps Gui

Apr 10th, 2017
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.75 KB | None | 0 0
  1. -- hi thanks for using my gui
  2. -- ctahmid
  3.  
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. local infcash = Instance.new("TextButton")
  7. local speed = Instance.new("TextButton")
  8. local TextLabel = Instance.new("TextLabel")
  9. local aimbot = Instance.new("TextButton")
  10.  
  11. ScreenGui.Parent = game.CoreGui
  12.  
  13. Frame.Parent = ScreenGui
  14. Frame.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  15. Frame.BackgroundTransparency = 0.5
  16. Frame.BorderColor3 = Color3.new(0, 0, 0)
  17. Frame.BorderSizePixel = 5
  18. Frame.Position = UDim2.new(0.0877993181, 0, 0.626198053, 0)
  19. Frame.Size = UDim2.new(0.340934992, 0, 0.273162931, 0)
  20.  
  21. infcash.Name = "infcash"
  22. infcash.Parent = Frame
  23. infcash.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  24. infcash.BackgroundTransparency = 0.5
  25. infcash.BorderColor3 = Color3.new(0, 0, 0)
  26. infcash.BorderSizePixel = 5
  27. infcash.Position = UDim2.new(0.5, -100, 0.200000003, -25)
  28. infcash.Size = UDim2.new(0.668896317, 0, 0.204678357, 0)
  29. infcash.Font = Enum.Font.SourceSansLight
  30. infcash.FontSize = Enum.FontSize.Size24
  31. infcash.Text = "Infinite Cash"
  32. infcash.TextColor3 = Color3.new(1, 1, 1)
  33. infcash.TextSize = 24
  34.  
  35. speed.Name = "speed"
  36. speed.Parent = Frame
  37. speed.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  38. speed.BackgroundTransparency = 0.5
  39. speed.BorderColor3 = Color3.new(0, 0, 0)
  40. speed.BorderSizePixel = 5
  41. speed.Position = UDim2.new(0.5, -100, 0.5, -25)
  42. speed.Size = UDim2.new(0.668896317, 0, 0.204678357, 0)
  43. speed.Font = Enum.Font.SourceSansLight
  44. speed.FontSize = Enum.FontSize.Size24
  45. speed.Text = "Speed (soon)"
  46. speed.TextColor3 = Color3.new(1, 1, 1)
  47. speed.TextSize = 24
  48.  
  49. TextLabel.Parent = Frame
  50. TextLabel.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  51. TextLabel.BackgroundTransparency = 0.5
  52. TextLabel.BorderColor3 = Color3.new(0, 0, 0)
  53. TextLabel.BorderSizePixel = 5
  54. TextLabel.Position = UDim2.new(0, 0, -0.356725156, 0)
  55. TextLabel.Size = UDim2.new(1, 0, 0.310000002, 0)
  56. TextLabel.Font = Enum.Font.SourceSansLight
  57. TextLabel.FontSize = Enum.FontSize.Size24
  58. TextLabel.Text = "Nerf FPS GUI"
  59. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  60. TextLabel.TextSize = 24
  61.  
  62. aimbot.Name = "aimbot"
  63. aimbot.Parent = Frame
  64. aimbot.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  65. aimbot.BackgroundTransparency = 0.5
  66. aimbot.BorderColor3 = Color3.new(0, 0, 0)
  67. aimbot.BorderSizePixel = 5
  68. aimbot.Position = UDim2.new(0.5, -100, 0.800000012, -25)
  69. aimbot.Size = UDim2.new(0.668896317, 0, 0.204678357, 0)
  70. aimbot.Font = Enum.Font.SourceSansLight
  71. aimbot.FontSize = Enum.FontSize.Size24
  72. aimbot.Text = "Aimbot (soon)"
  73. aimbot.TextColor3 = Color3.new(1, 1, 1)
  74. aimbot.TextSize = 24
  75.  
  76. infcash.MouseButton1Down:connect(function()
  77. game.Players.LocalPlayer.leaderstats.Level.Value = 200
  78. end)
Add Comment
Please, Sign In to add comment