OogaBoogaNoob

Hero sim gui

Apr 26th, 2022
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.46 KB | None | 0 0
  1. local Notification = loadstring(game:HttpGet("https://raw.githubusercontent.com/Kinlei/Dynissimo/main/Scripts/AkaliNotif.lua"))().Notify
  2.  
  3. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/Kinlei/MaterialLua/master/Module.lua"))()
  4.  
  5. local Lib = Library.Load({
  6. Title = "A UNIVERSAL TIME",
  7. Style = 3,
  8. SizeX = 250,
  9. SizeY = 250,
  10. Theme = "Dark",
  11. ColorOverrides = {
  12. MainFrame = Color3.fromRGB(20, 20, 20)
  13. }
  14. })
  15.  
  16. local Main = Lib.New({
  17. Title = "Main"
  18. })
  19.  
  20. Main.Dropdown({
  21. Text = "Teleport",
  22. Callback = function(Selected)
  23. if Selected == "Commom chest" then
  24. Selected = CFrame.new(-132.698624, -762, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  25. elseif Selected == "Rare chest" then
  26. Selected = CFrame.new(-132.698624, -717, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  27. elseif Selected == "Very Rare chest" then
  28. Selected = CFrame.new(-132.698624, -717, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  29. elseif Selected == "Legendary chest" then
  30. Selected = CFrame.new(-1572, -132.698624, -762, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  31. elseif Selected == "2x endu" then
  32. Selected = CFrame.new(-1867.6991, -103.496735, -188.592682, 0.829036474, -0, -0.559194624, 0, 1, -0, 0.559194624, 0, 0.829036474)
  33. elseif Selected == "2x str" then
  34. Selected = CFrame.new(2019.9397, -95.7268066, -189.612976, 0.866007268, 0, 0.500031412, 0, 1, 0, -0.500031412, 0, 0.866007268)
  35. elseif Selected == "5000x psy" then
  36. Selected = CFrame.new(1364.94, 2359.39, -628.728)
  37. elseif Selected == "5000x str" then
  38. Selected = CFrame.new( -1578.65, 2282.66, 704.06)
  39. elseif Selected == "5000x endu" then
  40. Selected = CFrame.new(-2550.34, 2279.83, -39.6003)
  41. elseif Selected == "5x str" then
  42. Selected = CFrame.new(-952.254, -135.604, 92.4227)
  43. elseif Selected == "5x endu" then
  44. Selected = CFrame.new(85.7874, 130.673, 97.4919)
  45. elseif Selected == "still doing" then
  46. Selected =
  47. end
  48.  
  49. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = Selected
  50. end,
  51. Options = {
  52. "Commom chest",
  53. "Rare chest",
  54. "Very Rare chest",
  55. "Legendary chest",
  56. "2x endu",
  57. "2x str",
  58. "5000x psy",
  59. "5000x str",
  60. "5000x endu",
  61. "5x str",
  62. "5x endu",
  63. "still doing"
  64. }
  65. })
Advertisement
Add Comment
Please, Sign In to add comment