Advertisement
Blocked6448

Verde cafe

Oct 12th, 2019
2,069
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. local library = loadstring(game:HttpGet("https://pastebin.com/raw/eWKgbdix", true))()
  2. local w = library:CreateWindow('Verde Cafe')
  3. w:Section('Wally ui V2')
  4. local b = w:Button("Remove Name", function()
  5. game.Players.LocalPlayer.Character.OverheadRank:remove()
  6. end)
  7. local b = w:Button("Change Rank Color", function()
  8. local a=game:GetService("ReplicatedStorage").RankFolder.RankColorChange;while wait()do a:FireServer(Color3.fromRGB(196, 40, 28))end
  9. end)
  10. w:Section('Bypass')
  11. local box = w:Box('WalkSpeed', {
  12. flag = "ws";
  13. type = 'number';
  14. }, function(new, old, enter)
  15. print(new, old, enter)
  16. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = tonumber(new)
  17. end)
  18. local box = w:Box('JumpPower', {
  19. flag = "jp";
  20. type = 'number';
  21. }, function(new, old, enter)
  22. print(new, old, enter)
  23. game.Players.LocalPlayer.Character.Humanoid.JumpPower = tonumber(new)
  24. end)
  25. w:Bind("Reset Character", {
  26. flag = "killbind";
  27. kbonly = true;
  28. default = Enum.KeyCode.RightAlt;
  29. }, function()
  30. game.Players.LocalPlayer.Character:BreakJoints()
  31. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement