Advertisement
AjareliVajkaci

FE SCP-096/SHY GUY R6 ANIMATION

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