Advertisement
fiztgibbonjack

spellbound

Jun 16th, 2021
2,277
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.76 KB | None | 0 0
  1. local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/GreenDeno/Venyx-UI-Library/main/source.lua"))()
  2. local venyx = library.new("Spellbound RPG", 5013109572)
  3.  
  4.  
  5. local themes = {
  6. Background = Color3.fromRGB(24, 24, 24),
  7. Glow = Color3.fromRGB(0, 0, 0),
  8. Accent = Color3.fromRGB(10, 10, 10),
  9. LightContrast = Color3.fromRGB(20, 20, 20),
  10. DarkContrast = Color3.fromRGB(14, 14, 14),
  11. TextColor = Color3.fromRGB(255, 255, 255)
  12. }
  13.  
  14.  
  15. local page = venyx:addPage("Item", 5012544693)
  16. local section1 = page:addSection("Get Random Item")
  17.  
  18. section1:addButton("Random Item", function()
  19. game:GetService("ReplicatedStorage").Chest.GrantItem:FireServer("Daily1")
  20. game:GetService("ReplicatedStorage").Chest.GrantItem:FireServer("Daily2")
  21. game:GetService("ReplicatedStorage").Chest.GrantItem:FireServer("Daily3")
  22. game:GetService("ReplicatedStorage").Chest.GrantItem:FireServer("Daily4")
  23. game:GetService("ReplicatedStorage").Chest.GrantItem:FireServer("Daily5")
  24. game:GetService("ReplicatedStorage").Chest.GrantItem:FireServer("Daily6")
  25. game:GetService("ReplicatedStorage").Chest.GrantItem:FireServer("Daily7")
  26. game:GetService("ReplicatedStorage").Chest.GrantItem:FireServer("Daily8")
  27. game:GetService("ReplicatedStorage").Chest.GrantItem:FireServer("Daily9")
  28. game:GetService("ReplicatedStorage").Chest.GrantItem:FireServer("Daily10")
  29. end)
  30.  
  31. section1:addButton("Get Extra Chest Gamepass", function()
  32. game:GetService("Players").LocalPlayer.Passes.ChestPerk.Value = true
  33. end)
  34.  
  35. section1:addButton("Get Inf Double Exp(idk if its client-side)", function()
  36. game:GetService("Players").LocalPlayer.Passes.DoubleXPTimeLeft.Value = 999999999
  37. end)
  38.  
  39. section1:addButton("Get VIP Gamepass", function()
  40. game:GetService("Players").LocalPlayer.Passes.VIP.Value = true
  41. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement