Advertisement
Guest User

fixed stupid script ok

a guest
Feb 25th, 2020
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. -- autist's fov circle
  2. -- coded in notepad lmfao
  3.  
  4. --check if exploit supports drawing lib:
  5. if Drawing and Drawing.new then
  6.  
  7.  
  8. --variables:
  9. local rainbow = true -- change to false for no rainbow
  10. local gs = game:GetService("GuiService"):GetGuiInset()
  11. local mouse = game:GetService("Players").LocalPlayer:GetMouse()
  12. local a = Drawing.new("Circle")
  13.  
  14. --functions:
  15. local function Rainbow() return C3.fromHSV(sin((tick() / 3) % 1), 0.5, 1) end -- credit to gamesense v2.0
  16.  
  17. --on execute:
  18. a.Radius = 40
  19. a.Thickness = .50
  20. a.Filled = false
  21. a.Transparency =1
  22. if rainbow then a.Color = Rainbow() else a.Color = Color3.new(0,255,0) end --if rainbow
  23. a.Visible - true
  24.  
  25. while wait() do
  26.    a.Position = Vector2.new(mouse.X,mouse.Y+gs.Y)
  27. end
  28.  
  29. else
  30.     game:GetService("Players").LocalPlayer:kick("unsupported exploit")
  31. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement