Advertisement
NiceBBMBThai

Gui Free Icon03

Apr 10th, 2021 (edited)
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.16 KB | None | 0 0
  1. local Material = loadstring(game:HttpGet("https://raw.githubusercontent.com/NiceBBMBThai12/NBTScript/main/Gui%20Th%20Edit%20free%2001"))()
  2.  
  3. local XX =
  4. Material.Load(
  5. {
  6. Title = "Giant Simulator NBT Gui",
  7. Style = 1,
  8. SizeX = 400,
  9. SizeY = 185,
  10. Theme = "Dark"
  11. }
  12. )
  13.  
  14. local GoogleRemote = game:GetService("ReplicatedStorage").ReportGoogleAnalyticsEvent
  15.  
  16. -- Functions
  17.  
  18. local s =
  19. setmetatable(
  20. {},
  21. {
  22. __index = function(self, service)
  23. return game:GetService(service)
  24. end,
  25. __newindex = function(self, key)
  26. self[key] = nil
  27. end
  28. }
  29. )
  30.  
  31. hookfunction(GoogleRemote.FireServer, function()
  32. return nil
  33. end)
  34.  
  35. function FindFolder(name)
  36. for _,f in next, game:GetService("Workspace").Scene:GetChildren() do
  37. if string.find(f.Name, name) then
  38. return f
  39. end
  40. end
  41. end
  42.  
  43. -- GUI
  44.  
  45. local Main =
  46. XX.New(
  47. {
  48. Title = "Auto"
  49. }
  50. )
  51.  
  52. local Credit =
  53. XX.New(
  54. {
  55. Title = "Credit"
  56. }
  57. )
  58.  
  59. local D =
  60. Main.Toggle(
  61. {
  62. Text = "Auto Farm",
  63. Callback = function(Value)
  64. _G.AutoFarm = Value
  65. while _G.AutoFarm do
  66. wait(0.3)
  67. local Noders = FindFolder("147"):GetChildren()
  68. local s = math.random(1, #Noders)
  69. game:GetService("RunService").RenderStepped:Wait()
  70. tweenService, tweenInfo = game:GetService("TweenService"), TweenInfo.new(0, Enum.EasingStyle.Linear)
  71. tween =
  72. tweenService:Create(
  73. game:GetService("Players")["LocalPlayer"].Character.HumanoidRootPart,
  74. tweenInfo,
  75. {CFrame = CFrame.new(Noders[s].Position)}
  76. )
  77. tween:Play()
  78. end
  79. end,
  80. Enabled = false
  81. }
  82. )
  83.  
  84. local blah =
  85. Main.Toggle(
  86. {
  87. Text = "Auto Jump",
  88. Callback = function(Value)
  89. _G.AutoJump = Value
  90. while _G.AutoJump do
  91. wait(0.60)
  92. local User = game.Players.LocalPlayer
  93. local UserCharacter = User.Character
  94. local Humanoid = UserCharacter.Humanoid
  95. Humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
  96. end
  97. end,
  98. Enabled = false
  99. }
  100. )
  101.  
  102. local blah =
  103. Main.Toggle(
  104. {
  105. Text = "Auto Attack",
  106. Callback = function(Value)
  107. _G.AutoAttack = Value
  108. while _G.AutoAttack do
  109. wait()
  110. game:GetService("ReplicatedStorage").Aero.AeroRemoteServices.GameService.WeaponAttackStart:FireServer()
  111. wait(.10)
  112. game:GetService("ReplicatedStorage").Aero.AeroRemoteServices.GameService.WeaponAnimComplete:FireServer()
  113. end
  114. end,
  115. Enabled = false
  116. }
  117. )
  118.  
  119. local blah =
  120. Credit.Button(
  121. {
  122. Text = "Copy Link Discord / Discord.gg/4KqkXRDdGE",
  123. Callback = function(Value)
  124. setclipboard("https://discord.gg/4KqkXRDdGE")
  125. end,
  126. Enabled = false
  127. }
  128. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement