zhangfengshan

kl

Feb 23rd, 2023
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.38 KB | None | 0 0
  1. local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/miroeramaa/TurtleLib/main/TurtleUiLib.lua"))()
  2. local window1 = library:Window("Scripts")
  3. local window2 = library:Window("LocalPlayer")
  4.  
  5. library:Keybind("Q")
  6.  
  7.  
  8.  
  9. window2:Slider("Walkspeed",16,120,5, function(value)
  10. game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = value
  11. end)
  12.  
  13.  
  14. window2:Slider("JumpPower",50,300,20, function(value)
  15. game:GetService("Players").LocalPlayer.Character.Humanoid.JumpPower = value
  16. end)
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23. window2:Toggle("Noclip", false, function(boolrfq)
  24. getgenv().trfffffinketcs = boolrfq
  25. game:GetService("RunService").RenderStepped:Connect(function()
  26. if getgenv().trfffffinketcs then
  27. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  28. end
  29. end)
  30. end)
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39. window1:Label("Client-Side Copy", Color3.fromRGB(127, 143, 166))
  40. window1:Button("Copy Green Balloon",function()
  41. local player = tostring(game.Players.LocalPlayer.Name)
  42. while true do
  43. if game.Workspace:FindFirstChild("GreenBalloon") then
  44. if not game.Workspace[player]:FindFirstChild("GreenBalloon") and not game.Players.LocalPlayer.Backpack:FindFirstChild("GreenBalloon") then
  45. local workspaceClone = game.Workspace.GreenBalloon:Clone()
  46. workspaceClone.Parent = game.Workspace[player]
  47. end
  48. else
  49. local balloonCheck = game.Workspace:GetDescendants()
  50. local balloonClone
  51. for i, balloon in ipairs(balloonCheck) do
  52. if (tostring(balloon.Name) == "GreenBalloon") then
  53. balloonClone = balloon:Clone()
  54. wait()
  55. end
  56. end
  57. balloonClone.Parent = game.Workspace
  58. local workspaceClone = game.Workspace.GreenBalloon:Clone()
  59. workspaceClone.Parent = game.Workspace[player]
  60. end
  61. wait()
  62. end
  63. end)
  64.  
  65.  
  66. window1:Label("Server-Side [FE]", Color3.fromRGB(127, 143, 166))
  67. window1:Button("Bring Unanchored Bricks [E]",function()
  68. local UserInputService = game:GetService("UserInputService")
  69. local Mouse = game:GetService("Players").LocalPlayer:GetMouse()
  70. local Folder = Instance.new("Folder", game:GetService("Workspace"))
  71. local Part = Instance.new("Part", Folder)
  72. local Attachment1 = Instance.new("Attachment", Part)
  73. Part.Anchored = true
  74. Part.CanCollide = false
  75. Part.Transparency = 1
  76. local Updated = Mouse.Hit + Vector3.new(0, 5, 0)
  77. local NetworkAccess = coroutine.create(function()
  78. settings().Physics.AllowSleep = false
  79. while game:GetService("RunService").RenderStepped:Wait() do
  80. for _, Players in next, game:GetService("Players"):GetPlayers() do
  81. if Players ~= game:GetService("Players").LocalPlayer then
  82. Players.MaximumSimulationRadius = 0
  83. sethiddenproperty(Players, "SimulationRadius", 0)
  84. end
  85. end
  86. game:GetService("Players").LocalPlayer.MaximumSimulationRadius = math.pow(math.huge,math.huge)
  87. setsimulationradius(math.huge)
  88. end
  89. end)
  90. coroutine.resume(NetworkAccess)
  91. local function ForcePart(v)
  92. if v:IsA("Part") and v.Anchored == false and v.Parent:FindFirstChild("Humanoid") == nil and v.Parent:FindFirstChild("Head") == nil and v.Name ~= "Handle" then
  93. Mouse.TargetFilter = v
  94. for _, x in next, v:GetChildren() do
  95. if x:IsA("BodyAngularVelocity") or x:IsA("BodyForce") or x:IsA("BodyGyro") or x:IsA("BodyPosition") or x:IsA("BodyThrust") or x:IsA("BodyVelocity") or x:IsA("RocketPropulsion") then
  96. x:Destroy()
  97. end
  98. end
  99. if v:FindFirstChild("Attachment") then
  100. v:FindFirstChild("Attachment"):Destroy()
  101. end
  102. if v:FindFirstChild("AlignPosition") then
  103. v:FindFirstChild("AlignPosition"):Destroy()
  104. end
  105. if v:FindFirstChild("Torque") then
  106. v:FindFirstChild("Torque"):Destroy()
  107. end
  108. v.CanCollide = false
  109. local Torque = Instance.new("Torque", v)
  110. Torque.Torque = Vector3.new(100000, 100000, 100000)
  111. local AlignPosition = Instance.new("AlignPosition", v)
  112. local Attachment2 = Instance.new("Attachment", v)
  113. Torque.Attachment0 = Attachment2
  114. AlignPosition.MaxForce = 9999999999999999
  115. AlignPosition.MaxVelocity = math.huge
  116. AlignPosition.Responsiveness = 200
  117. AlignPosition.Attachment0 = Attachment2
  118. AlignPosition.Attachment1 = Attachment1
  119. end
  120. end
  121. for _, v in next, game:GetService("Workspace"):GetDescendants() do
  122. ForcePart(v)
  123. end
  124. game:GetService("Workspace").DescendantAdded:Connect(function(v)
  125. ForcePart(v)
  126. end)
  127. UserInputService.InputBegan:Connect(function(Key, Chat)
  128. if Key.KeyCode == Enum.KeyCode.E and not Chat then
  129. Updated = Mouse.Hit + Vector3.new(0, 5, 0)
  130. end
  131. end)
  132. spawn(function()
  133. while game:GetService("RunService").RenderStepped:Wait() do
  134. Attachment1.WorldCFrame = Updated
  135. end
  136. end)
  137. end)
  138.  
  139. window1:Toggle("FE Spam Sounds",false, function(State1)
  140. getgenv().hit = State1
  141. while wait() do
  142. if getgenv().hit then
  143. for i,v in pairs(game.Workspace:GetDescendants()) do
  144. if v:IsA("Sound") then
  145. v:Play()
  146. end
  147. end
  148. end
  149. end
  150. end)
  151.  
  152. window1:Toggle("Auto Disaster Detect",false,function(vasde)
  153. getgenv().trincckets = vasde
  154. if getgenv().trincckets then
  155. local Character = game:GetService("Players").LocalPlayer.Character
  156. local Tag = Character:FindFirstChild("SurvivalTag")
  157. if Tag then
  158. game:GetService("StarterGui"):SetCore("SendNotification",{
  159. Title = "Disaster Detected",
  160. Text = "" .. Tag.Value,
  161. Button1 = "Ok", Duration = 20, })
  162. end
  163. local function Repeat(R)
  164. R.ChildAdded:connect(
  165. function(Find)
  166. if Find.Name == "SurvivalTag" then
  167. game:GetService("StarterGui"):SetCore("SendNotification",{
  168. Title = "Disaster Detected",
  169. Text = "".. Find.Value,
  170. Button1 = "Ok", Duration = 20, })
  171. end
  172. end
  173. )
  174. end
  175. Repeat(Character)
  176. game:GetService("Players").LocalPlayer.CharacterAdded:connect(
  177. function(R)
  178. Repeat(R)
  179. end
  180. )
  181. end
  182. end)
  183.  
  184. window1:Toggle("Free Compass",false,function(vacvsde)
  185. getgenv().trink545ets = vacvsde
  186. if getgenv().trink545ets then
  187. TextLabel = game:GetService("Players").LocalPlayer.PlayerGui.MainGui.MapVotePage
  188. TextLabel.Visible = true
  189. else
  190. TextLabel = game:GetService("Players").LocalPlayer.PlayerGui.MainGui.MapVotePage
  191. TextLabel.Visible = false
  192. end
  193. end)
  194. window1:Button("Remove FallDamage",function()
  195. while wait() do
  196. game:GetService("Workspace")[game.Players.LocalPlayer.Name].FallDamageScript:Destroy()
  197. end
  198. end)
  199. window2:Label("Teleport Areas", Color3.fromRGB(127, 143, 166))
  200. window2:Button("Teleport To Lobby",function()
  201. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-243, 194, 331)
  202. end)
  203. window2:Button("Teleport To Map",function()
  204. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-117, 47, 5)
  205. end)
  206. window1:Toggle("Afk Win Farm",false,function(ffffv)
  207. getgenv().trinkets = ffffv
  208. while wait(5) do
  209. if getgenv().trinkets then
  210. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-269, 180, 382)
  211. local char = game.Players.LocalPlayer.Character
  212.  
  213. local cPos = char.HumanoidRootPart.Position
  214. local fPos = cPos.Z + 20
  215.  
  216. char.Humanoid:MoveTo(Vector3.new(cPos.X,cPos.Y,fPos))
  217. end
  218. end
  219. end)
  220.  
  221.  
  222. game:GetService("StarterGui"):SetCore("SendNotification",{
  223. Title = "Important!",
  224. Text = "Thanks For Using This Script [Ameicaa]",
  225. Button1 = "LMAO",Button2 = "OMG", Duration = 20, })
Add Comment
Please, Sign In to add comment