Advertisement
VuaxExploits

Untitled

Dec 8th, 2019
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. RAINBOW GUI : while true do
  2. for a = 1,360,1 do wait(.01)
  3. script.Parent.BackgroundColor3 = Color3.fromHSV(a/360,1,1)
  4. end
  5. end
  6.  
  7.  
  8.  
  9. RAINBOW TEXT : while true do
  10. for a = 1,360,1 do wait(.01)
  11. script.Parent.TextColor3 = Color3.fromHSV(a/360,1,1)
  12. end
  13. end
  14.  
  15.  
  16. -----------------------------------------------------------------------------------------------------------------------------------------
  17. How to send notfiaction:
  18. game.StarterGui:SetCore('SendNotification', {
  19. Title = 'Titlehere';
  20. Text = "Texthere";
  21. Duration = 5;
  22. })
  23. wait(6)
  24. game.StarterGui:SetCore('SendNotification', {
  25. Title = 'Title Here';
  26. Text = "Text here";
  27. Duration = 5;
  28. })
  29.  
  30.  
  31.  
  32. ---------------------------------------------------------------------------------------------------------------------------------------
  33.  
  34. TO MAKE THE BUTTON ACTIVATE THE SCRIPT:
  35.  
  36. BUTTONNAMEHERE.MouseButton1Down:connect(function()
  37. Scripthere
  38. end)
  39.  
  40. Search you're Main and make it draggable like that
  41.  
  42. YOURMAINFRAMENAME.Draggable = true
  43.  
  44.  
  45. To make it open you to
  46.  
  47. NameOFBUTTON.MouseButton1Down:connect(function()
  48. NameOFURMAINGUI.Visible = true
  49. NAMEOFOPENFrame.Visible = false
  50. end)
  51.  
  52. To make it close you to
  53.  
  54. CLOSEBUTTONNAME.MouseButton1Down:connect(function()
  55. NAMEOFOPENBUTTON.Visible = true
  56. MAINGUINAME.Visible = false
  57. end)
  58.  
  59. Then scroll up and search for
  60.  
  61. GUINAME.Parent = game.Workspace
  62. change Workspace to CoreGui
  63.  
  64. GUINAME.Parent = game.CoreGui
  65.  
  66. [FOR GUI IF IT'S SCRIPTED TO LUA]
  67.  
  68. ---------------------------------------------------------------------------------------------------------------------------------------
  69. SCRIPTS :
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement