Advertisement
Smartdumgood

FE fling

Jan 21st, 2025 (edited)
2,060
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.88 KB | None | 0 0
  1.  
  2. local ScreenGui = Instance.new("ScreenGui")
  3. local Frame = Instance.new("Frame")
  4. local Frame_2 = Instance.new("Frame")
  5. local TextLabel = Instance.new("TextLabel")
  6. local TextButton = Instance.new("TextButton")
  7.  
  8. --Properties:
  9.  
  10. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  11. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  12. ScreenGui.ResetOnSpawn = false
  13. print("sub to DuplexScripts")
  14.  
  15. Frame.Parent = ScreenGui
  16. Frame.BackgroundColor3 = Color3.fromRGB(34, 34, 34)
  17. Frame.BorderColor3 = Color3.fromRGB(0, 0, 0)
  18. Frame.BorderSizePixel = 0
  19. Frame.Position = UDim2.new(0.388539821, 0, 0.427821517, 0)
  20. Frame.Size = UDim2.new(0, 158, 0, 110)
  21.  
  22. Frame_2.Parent = Frame
  23. Frame_2.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
  24. Frame_2.BorderColor3 = Color3.fromRGB(0, 0, 0)
  25. Frame_2.BorderSizePixel = 0
  26. Frame_2.Size = UDim2.new(0, 158, 0, 25)
  27.  
  28. TextLabel.Parent = Frame_2
  29. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  30. TextLabel.BackgroundTransparency = 1.000
  31. TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
  32. TextLabel.BorderSizePixel = 0
  33. TextLabel.Position = UDim2.new(0.112792775, 0, -0.0151660154, 0)
  34. TextLabel.Size = UDim2.new(0, 121, 0, 26)
  35. TextLabel.Font = Enum.Font.Sarpanch
  36. TextLabel.Text = "Touch Fling"
  37. TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  38. TextLabel.TextSize = 25.000
  39.  
  40. TextButton.Parent = Frame
  41. TextButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  42. TextButton.BorderColor3 = Color3.fromRGB(255, 255, 255)
  43. TextButton.BorderSizePixel = 0
  44. TextButton.Position = UDim2.new(0.113924049, 0, 0.418181807, 0)
  45. TextButton.Size = UDim2.new(0, 121, 0, 37)
  46. TextButton.Font = Enum.Font.SourceSansItalic
  47. TextButton.Text = "OFF"
  48. TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  49. TextButton.TextSize = 20.000
  50.  
  51. -- Scripts:
  52.  
  53. local function IIMAWH_fake_script() -- TextButton.LocalScript
  54. local script = Instance.new('LocalScript', TextButton)
  55.  
  56. local ReplicatedStorage = game:GetService("ReplicatedStorage")
  57. local RunService = game:GetService("RunService")
  58. local Players = game:GetService("Players")
  59.  
  60. local toggleButton = script.Parent
  61. local hiddenfling = false
  62. local flingThread
  63. if not ReplicatedStorage:FindFirstChild("juisdfj0i32i0eidsuf0iok") then
  64. local detection = Instance.new("Decal")
  65. detection.Name = "juisdfj0i32i0eidsuf0iok"
  66. detection.Parent = ReplicatedStorage
  67. end
  68.  
  69. local function fling()
  70. local lp = Players.LocalPlayer
  71. local c, hrp, vel, movel = nil, nil, nil, 0.1
  72.  
  73. while hiddenfling do
  74. RunService.Heartbeat:Wait()
  75. c = lp.Character
  76. hrp = c and c:FindFirstChild("HumanoidRootPart")
  77.  
  78. if hrp then
  79. vel = hrp.Velocity
  80. hrp.Velocity = vel * 10000 + Vector3.new(0, 10000, 0)
  81. RunService.RenderStepped:Wait()
  82. hrp.Velocity = vel
  83. RunService.Stepped:Wait()
  84. hrp.Velocity = vel + Vector3.new(0, movel, 0)
  85. movel = -movel
  86. end
  87. end
  88. end
  89.  
  90. toggleButton.MouseButton1Click:Connect(function()
  91. hiddenfling = not hiddenfling
  92. toggleButton.Text = hiddenfling and "ON" or "OFF"
  93.  
  94. if hiddenfling then
  95. flingThread = coroutine.create(fling)
  96. coroutine.resume(flingThread)
  97. else
  98. hiddenfling = false
  99. end
  100. end)
  101.  
  102. end
  103. coroutine.wrap(IIMAWH_fake_script)()
  104. local function QCJQJL_fake_script() -- Frame.LocalScript
  105. local script = Instance.new('LocalScript', Frame)
  106.  
  107. script.Parent.Active = true
  108. script.Parent.Draggable = true
  109. end
  110. coroutine.wrap(QCJQJL_fake_script)()-- Touch fling gui
  111.  
  112. -- Gui to Lua (VIP VERSION)
  113. -- Version: 6.9
  114.  
  115. -- Instances:
  116.  
  117. local ScreenGui = Instance.new("ScreenGui")
  118. local Frame = Instance.new("Frame")
  119. local Frame_2 = Instance.new("Frame")
  120. local TextLabel = Instance.new("TextLabel")
  121. local TextButton = Instance.new("TextButton")
  122.  
  123. --Properties:
  124.  
  125. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  126. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  127. ScreenGui.ResetOnSpawn = false
  128. print("sub to DuplexScripts")
  129.  
  130. Frame.Parent = ScreenGui
  131. Frame.BackgroundColor3 = Color3.fromRGB(34, 34, 34)
  132. Frame.BorderColor3 = Color3.fromRGB(0, 0, 0)
  133. Frame.BorderSizePixel = 0
  134. Frame.Position = UDim2.new(0.388539821, 0, 0.427821517, 0)
  135. Frame.Size = UDim2.new(0, 158, 0, 110)
  136.  
  137. Frame_2.Parent = Frame
  138. Frame_2.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
  139. Frame_2.BorderColor3 = Color3.fromRGB(0, 0, 0)
  140. Frame_2.BorderSizePixel = 0
  141. Frame_2.Size = UDim2.new(0, 158, 0, 25)
  142.  
  143. TextLabel.Parent = Frame_2
  144. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  145. TextLabel.BackgroundTransparency = 1.000
  146. TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
  147. TextLabel.BorderSizePixel = 0
  148. TextLabel.Position = UDim2.new(0.112792775, 0, -0.0151660154, 0)
  149. TextLabel.Size = UDim2.new(0, 121, 0, 26)
  150. TextLabel.Font = Enum.Font.Sarpanch
  151. TextLabel.Text = "Touch Fling"
  152. TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  153. TextLabel.TextSize = 25.000
  154.  
  155. TextButton.Parent = Frame
  156. TextButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  157. TextButton.BorderColor3 = Color3.fromRGB(255, 255, 255)
  158. TextButton.BorderSizePixel = 0
  159. TextButton.Position = UDim2.new(0.113924049, 0, 0.418181807, 0)
  160. TextButton.Size = UDim2.new(0, 121, 0, 37)
  161. TextButton.Font = Enum.Font.SourceSansItalic
  162. TextButton.Text = "OFF"
  163. TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  164. TextButton.TextSize = 20.000
  165.  
  166. -- Scripts:
  167.  
  168. local function IIMAWH_fake_script() -- TextButton.LocalScript
  169. local script = Instance.new('LocalScript', TextButton)
  170.  
  171. local ReplicatedStorage = game:GetService("ReplicatedStorage")
  172. local RunService = game:GetService("RunService")
  173. local Players = game:GetService("Players")
  174.  
  175. local toggleButton = script.Parent
  176. local hiddenfling = false
  177. local flingThread
  178. if not ReplicatedStorage:FindFirstChild("juisdfj0i32i0eidsuf0iok") then
  179. local detection = Instance.new("Decal")
  180. detection.Name = "juisdfj0i32i0eidsuf0iok"
  181. detection.Parent = ReplicatedStorage
  182. end
  183.  
  184. local function fling()
  185. local lp = Players.LocalPlayer
  186. local c, hrp, vel, movel = nil, nil, nil, 0.1
  187.  
  188. while hiddenfling do
  189. RunService.Heartbeat:Wait()
  190. c = lp.Character
  191. hrp = c and c:FindFirstChild("HumanoidRootPart")
  192.  
  193. if hrp then
  194. vel = hrp.Velocity
  195. hrp.Velocity = vel * 10000 + Vector3.new(0, 10000, 0)
  196. RunService.RenderStepped:Wait()
  197. hrp.Velocity = vel
  198. RunService.Stepped:Wait()
  199. hrp.Velocity = vel + Vector3.new(0, movel, 0)
  200. movel = -movel
  201. end
  202. end
  203. end
  204.  
  205. toggleButton.MouseButton1Click:Connect(function()
  206. hiddenfling = not hiddenfling
  207. toggleButton.Text = hiddenfling and "ON" or "OFF"
  208.  
  209. if hiddenfling then
  210. flingThread = coroutine.create(fling)
  211. coroutine.resume(flingThread)
  212. else
  213. hiddenfling = false
  214. end
  215. end)
  216.  
  217. end
  218. coroutine.wrap(IIMAWH_fake_script)()
  219. local function QCJQJL_fake_script() -- Frame.LocalScript
  220. local script = Instance.new('LocalScript', Frame)
  221.  
  222. script.Parent.Active = true
  223. script.Parent.Draggable = true
  224. end
  225. coroutine.wrap(QCJQJL_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement