Advertisement
baconhack_263

field trip z script

Dec 19th, 2023
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.08 KB | None | 0 0
  1. local lib = loadstring(game:HttpGet("https://raw.githubusercontent.com/acsu123/HOHO_H/main/hoho_lib.lua", true))()
  2. local win = lib:Window("b̸͔̳̬̘̤̼̥͒̇̎͗̍̀̍̿a̵̖̯̺̳͙̥̗̞͓̎͂̃̾͂̌͝ç̴̣̣̪̭̩̌̉̿̇o̷̬͂̿͗̉͒̑̊ṉ̶̱͐̂̕͜ḧ̷̩̝͉́̀́̔̍̑̈́̐͘͝ą̶̝̱̜̜͔̜͊͝ͅc̴͖̬̮̭̺̠̼͙̎̀̌̆̎͜k̵̘͖̝̩̥͖̪̀́̚̚͠͝_̴̳̭͎̩̥͖̿̓̓̋͜2̷͙̹͔͈͂́̚6̶̫͖̪͔͈̏̅͌͝ ̴̦̩͕̎̀̈́̎ḩ̸͎͉͍͕̞̱͎̻̰́ū̵͎̹̟̫͎̉̎͌̈́͗̋b̸̢͖͖̳̞̜́͊̃̉̆ͅ","FIELD TRIP Z",Color3.new(0.333333, 0.666667, 1))
  3. local tab = win:Tab("MAIN")
  4. local label = tab:Label("Label", properties) --properties: {["Visible"] = flase}
  5. label:NewLabel("MAIN", properties)
  6. tab:Line()
  7. tab:Button("GET DONUT", function()
  8. local A_1 = "PICKUP_ITEM"
  9. local A_2 = "Donut"
  10. local Event = game:GetService("ReplicatedStorage").NetworkEvents.RemoteFunction
  11. Event:InvokeServer(A_1, A_2)
  12. end)
  13.  
  14. tab:Line()
  15. tab:Button("Get Bandage", function()
  16. local A_1 = "PICKUP_ITEM"
  17. local A_2 = "Bandage"
  18. local Event = game:GetService("ReplicatedStorage").NetworkEvents.RemoteFunction
  19. Event:InvokeServer(A_1, A_2)
  20. end)
  21.  
  22. tab:Line()
  23. tab:Button("Get Medkit", function()
  24. local A_1 = "PICKUP_ITEM"
  25. local A_2 = "MedKit"
  26. local Event = game:GetService("ReplicatedStorage").NetworkEvents.RemoteFunction
  27. Event:InvokeServer(A_1, A_2)
  28. end)
  29.  
  30. local label = tab:Label("Label", properties)
  31. label:NewLabel("GODMODE", properties)
  32. tab:Line()
  33. tab:Button("Godmode", function()
  34. _G.Heal = true
  35. while _G.Heal do
  36. wait(0.1)
  37. local A_1 = "HEAL_PLAYER"
  38. local A_2 = game:GetService("Players").LocalPlayer
  39. local A_3 = 999999999
  40. local Event = game:GetService("ReplicatedStorage").NetworkEvents.RemoteFunction
  41. Event:InvokeServer(A_1, A_2, A_3)
  42. wait(0.1)
  43. end
  44. end)
  45.  
  46. tab:Line()
  47. tab:Button("Remove Godmode", function()
  48. _G.Heal = false
  49. while _G.Heal do
  50. wait(0.1)
  51. local A_1 = "HEAL_PLAYER"
  52. local A_2 = game:GetService("Players").LocalPlayer
  53. local A_3 = 999999999
  54. local Event = game:GetService("ReplicatedStorage").NetworkEvents.RemoteFunction
  55. Event:InvokeServer(A_1, A_2, A_3)
  56. wait(0.1)
  57. end
  58. end)
  59. local label = tab:Label("Label", properties)
  60. label:NewLabel("FLY")
  61. tab:Line()
  62. tab:Button("Fly", function()
  63. if not IsOnMobile then
  64. NOFLY()
  65. wait()
  66. sFLY()
  67. else
  68. mobilefly(speaker)
  69. end
  70. if args[2] and isNumber(args[2]) then
  71. iyflyspeed = args[2]
  72. end
  73. end)
  74.  
  75. tab:Line()
  76. tab:Button("REMOVE FLY", function()
  77. if not IsOnMobile then NOFLY() else unmobilefly(speaker) end
  78. end
  79.  
  80. local toggle = tab:Toggle("FB/FULLBRIGHT", false, function(val)
  81. if brightLoop then
  82. brightLoop:Disconnect()
  83. end
  84. local function brightFunc()
  85. Lighting.Brightness = 2
  86. Lighting.ClockTime = 14
  87. Lighting.FogEnd = 100000
  88. Lighting.GlobalShadows = false
  89. Lighting.OutdoorAmbient = Color3.fromRGB(128, 128, 128)
  90. end
  91.  
  92. brightLoop = RunService.RenderStepped:Connect(brightFunc)
  93. lib:Nof("FB|ACT", 3)
  94. else
  95. if brightLoop then
  96. brightLoop:Disconnect()
  97. end
  98. lib:Nof("FB|DE ACT", 3)
  99. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement