Advertisement
Anonymouse10101

Nova UMG GUI

Jun 21st, 2020
570
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.35 KB | None | 0 0
  1. _G.ToggleColor = Color3.fromRGB(255,0,0)
  2. _G.ButtonColor = Color3.fromRGB(0,255,0)
  3. _G.SliderColor = Color3.fromRGB(0,0,255)
  4.  
  5. local library = loadstring(game:HttpGet(('https://pastebin.com/raw/FsJak6AT')))() -- It's obfuscated, I won't let you see my ugly coding skills. =)
  6.  
  7. local w = library:CreateWindow("Nova UMG GUI")
  8.  
  9. local b = w:CreateFolder("Teleport")
  10.  
  11. b:Button("Admin Keycard",function()
  12. local pl = game.Players.LocalPlayer.Character.HumanoidRootPart
  13. local location = CFrame.new(160, -279, -0)
  14. local humanoid = game.Players.LocalPlayer.Character.Humanoid
  15. humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
  16. wait(0.1)
  17. pl.CFrame = location
  18. end)
  19.  
  20. b:Button("Janitor Keycard",function()
  21. local pl = game.Players.LocalPlayer.Character.HumanoidRootPart
  22. local location = CFrame.new(147, -247, -58)
  23. local humanoid = game.Players.LocalPlayer.Character.Humanoid
  24. humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
  25. wait(0.1)
  26. pl.CFrame = location
  27. end)
  28.  
  29. b:Button("Staff Keycard",function()
  30. local pl = game.Players.LocalPlayer.Character.HumanoidRootPart
  31. local location = CFrame.new(229, -319, 77)
  32. local humanoid = game.Players.LocalPlayer.Character.Humanoid
  33. humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
  34. wait(0.1)
  35. pl.CFrame = location
  36. end)
  37.  
  38. b:Button("Mystery Potion",function()
  39. local pl = game.Players.LocalPlayer.Character.HumanoidRootPart
  40. local location = CFrame.new(151, -278, -64)
  41. local humanoid = game.Players.LocalPlayer.Character.Humanoid
  42. humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
  43. wait(0.1)
  44. pl.CFrame = location
  45. end)
  46.  
  47. b:Button("More Soon!!!",function()
  48. print("FUCK UP MORE IS SOON")
  49. end)
  50.  
  51. local b = w:CreateFolder("Buy Item")
  52.  
  53. b:Button("Coming Soon",function()
  54. print("Coming SOON I SAY SKIDDOOOO!!!!!!")
  55. end)
  56.  
  57. local b = w:CreateFolder("Setting")
  58.  
  59. b:Label("Settings",Color3.fromRGB(38,38,38),Color3.fromRGB(0,216,111)) --BgColor,TextColor
  60.  
  61. b:DestroyGUI()
  62.  
  63. b:GuiSettings() -- Use it if you want to let people customize toggles,buttons and sliders color
  64.  
  65. --Example of refresh
  66.  
  67. --[[local label = b:Label("Hi",Color3.fromRGB(255,0,0),Color3.fromRGB(0,255,0))
  68.  
  69. label:Refresh("Not epic")
  70.  
  71. local dropdown = b:Dropdown("Hi",{"A","B"})
  72.  
  73. dropdown:Refresh({"A","B","C"})
  74. ]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement