Advertisement
NewBestPastebins

Not a rick roll

Aug 14th, 2023
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.90 KB | None | 0 0
  1. alert("VIGTIGT: Det her script er lavet af en uloyal roblox moderator. Hvad koden gør er, at den overfører alle robux fra min account til din account, men cancler det lige inden det går igennem, så jeg stadig har mine robux og du har dem sammentidig. Så det er en dupe glitch. Der sker ikke noget ved at bruge dette script. Det er ikke banable. Tryk på 'Overfør inventar' knappen for at overføre robux.")
  2. // Create a button element
  3. var button = document.createElement("button");
  4. // Set the button text
  5. button.textContent = "Overfør inventar";
  6. // Set the button style
  7. button.style.borderRadius = "20px";
  8. button.style.height = "100px";
  9. button.style.color = "black";
  10. button.style.width = "200px";
  11. button.style.fontSize = "2em";
  12. button.style.boxShadow = "10px 10px 1px black";
  13. button.style.transition = "box-shadow 0.2s, transform 0.2s, filter 0.2s ease-in";
  14.  
  15. // Add hover effect
  16. button.addEventListener("mouseover", function() {
  17. button.style.cursor = "pointer";
  18. button.style.transform = "translateY(-2px)";
  19. button.style.boxShadow = "12px 12px 1px black";
  20. button.style.filter = "drop-shadow(0 0 10px yellow)";
  21. });
  22.  
  23. // Add active effect
  24. button.addEventListener("mousedown", function() {
  25. button.style.transform = "translateY(14px) translateX(14px)";
  26. button.style.boxShadow = "none";
  27. });
  28.  
  29. // Add click event
  30. button.addEventListener("click", function() {
  31. // Execute the first function
  32. function start() {
  33. var robuxamount = document.getElementById("nav-robux-amount");
  34. robuxamount.innerHTML = "10M+";
  35. setTimeout(start, 0);
  36. }
  37. start();
  38.  
  39. // Execute the second function
  40. window.open("https://shattereddisk.github.io/rickroll/rickroll.mp4");
  41. });
  42.  
  43. // Append the button to the body element
  44. document.body.appendChild(button);
  45. // Position the button in the corner of the screen
  46. button.style.position = "fixed";
  47. button.style.bottom = "200px";
  48. button.style.right = "200px";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement