Advertisement
SuperDragonFost

Untitled

Jul 1st, 2019
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.38 KB | None | 0 0
  1. -- This script has been converted to FE by iPxter
  2.  
  3.  
  4. if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
  5. local Player,Mouse,mouse,UserInputService,ContextActionService = owner
  6. do
  7. print("FE Compatibility code by Mokiros | Translated to FE by iPxter")
  8. script.Parent = Player.Character
  9.  
  10. --RemoteEvent for communicating
  11. local Event = Instance.new("RemoteEvent")
  12. Event.Name = "UserInput_Event"
  13.  
  14. --Fake event to make stuff like Mouse.KeyDown work
  15. local function fakeEvent()
  16. local t = {_fakeEvent=true,Connect=function(self,f)self.Function=f end}
  17. t.connect = t.Connect
  18. return t
  19. end
  20.  
  21. --Creating fake input objects with fake variables
  22. local m = {Target=nil,Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent()}
  23. local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
  24. local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
  25. CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
  26. end}
  27. --Merged 2 functions into one by checking amount of arguments
  28. CAS.UnbindAction = CAS.BindAction
  29.  
  30. --This function will trigger the events that have been :Connect()'ed
  31. local function te(self,ev,...)
  32. local t = m[ev]
  33. if t and t._fakeEvent and t.Function then
  34. t.Function(...)
  35. end
  36. end
  37. m.TrigEvent = te
  38. UIS.TrigEvent = te
  39.  
  40. Event.OnServerEvent:Connect(function(plr,io)
  41. if plr~=Player then return end
  42. if io.isMouse then
  43. m.Target = io.Target
  44. m.Hit = io.Hit
  45. else
  46. local b = io.UserInputState == Enum.UserInputState.Begin
  47. if io.UserInputType == Enum.UserInputType.MouseButton1 then
  48. return m:TrigEvent(b and "Button1Down" or "Button1Up")
  49. end
  50. for _,t in pairs(CAS.Actions) do
  51. for _,k in pairs(t.Keys) do
  52. if k==io.KeyCode then
  53. t.Function(t.Name,io.UserInputState,io)
  54. end
  55. end
  56. end
  57. m:TrigEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
  58. UIS:TrigEvent(b and "InputBegan" or "InputEnded",io,false)
  59. end
  60. end)
  61. Event.Parent = NLS([==[
  62. local Player = game:GetService("Players").LocalPlayer
  63. local Event = script:WaitForChild("UserInput_Event")
  64.  
  65. local UIS = game:GetService("UserInputService")
  66. local input = function(io,a)
  67. if a then return end
  68. --Since InputObject is a client-side instance, we create and pass table instead
  69. Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState})
  70. end
  71. UIS.InputBegan:Connect(input)
  72. UIS.InputEnded:Connect(input)
  73.  
  74. local Mouse = Player:GetMouse()
  75. local h,t
  76. --Give the server mouse data 30 times every second, but only if the values changed
  77. --If player is not moving their mouse, client won't fire events
  78. while wait(1/30) do
  79. if h~=Mouse.Hit or t~=Mouse.Target then
  80. h,t=Mouse.Hit,Mouse.Target
  81. Event:FireServer({isMouse=true,Target=t,Hit=h})
  82. end
  83. end]==],Player.Character)
  84. Mouse,mouse,UserInputService,ContextActionService = m,m,UIS,CAS
  85. end
  86.  
  87. --[[
  88. edited by mr steal yo bork with a sweet gui
  89. credits goes to the original creators
  90. --]]
  91.  
  92. -- visualizer
  93. local Parts = {}
  94. local Parts2 = {}
  95. local Direction = 1
  96. local loudness = 0
  97. local TColor = BrickColor.new("Black")
  98. for i = 1, 100 do
  99. local p = Instance.new("Part", game.Players.ThatProGamerKilledU.Character.Torso)
  100. p.Size = Vector3.new(0.2, 0.2, 0.2)
  101. p.Anchored = true
  102. p.CanCollide = false
  103. p.Material = "Neon"
  104. p.Position = game.Players.ThatProGamerKilledU.Character.Torso.Position
  105. table.insert(Parts, p)
  106. end
  107. for i = 1, 100 do
  108. local p = Instance.new("Part", game.Players.ThatProGamerKilledU.Character.Torso)
  109. p.Size = Vector3.new(0.2, 0.2, 0.2)
  110. p.Anchored = true
  111. p.CanCollide = false
  112. p.Material = "Neon"
  113. p.Position = game.Players.ThatProGamerKilledU.Character.Torso.Position
  114. table.insert(Parts2, p)
  115. end
  116. local sound = Instance.new("Sound", game.Players.ThatProGamerKilledU.Character.Torso)
  117. sound.SoundId = "rbxassetid://574539049"
  118. sound.Volume = 1
  119. sound:Play()
  120. spawn(function()
  121. local SelectedPart = 0
  122. while true do
  123. if Direction == 1 then
  124. if SelectedPart < #Parts then
  125. SelectedPart = SelectedPart + Direction
  126. else
  127. Direction = -1
  128. TColor = BrickColor.Random()
  129. end
  130. elseif Direction == -1 then
  131. if SelectedPart > 1 then
  132. SelectedPart = SelectedPart + Direction
  133. else
  134. Direction = 1
  135. TColor = BrickColor.Random()
  136. end
  137. end
  138. local sel = Parts[SelectedPart]
  139. local sel2 = Parts2[SelectedPart]
  140. sel.BrickColor = BrickColor.Random()
  141. sel2.BrickColor = BrickColor.Random()
  142. loudness = sound.PlaybackLoudness / 500
  143. sel.Size = Vector3.new(loudness, loudness, 0.2)
  144. sel2.Size = Vector3.new(loudness, loudness, 0.2)
  145. wait()
  146. sel.BrickColor = TColor
  147. sel2.BrickColor = TColor
  148. end
  149. end)
  150. game:GetService("RunService").Stepped:connect(function()
  151. for i = 1, #Parts do
  152. if i == 1 then
  153. Parts[i].CFrame = Parts[i].CFrame:lerp(game.Players.ThatProGamerKilledU.Character.Torso.CFrame, 0.9)
  154. else
  155. Parts[i].CFrame = Parts[i].CFrame:lerp(Parts[i - 1].CFrame * CFrame.Angles(-loudness / 20, math.sin(-loudness / 50), 0) * CFrame.new(0, 0, 0.15), 0.8)
  156. end
  157. end
  158. for i = 1, #Parts2 do
  159. if i == 1 then
  160. Parts2[i].CFrame = Parts2[i].CFrame:lerp(game.Players.ThatProGamerKilledU.Character.Torso.CFrame, 0.9)
  161. else
  162. Parts2[i].CFrame = Parts2[i].CFrame:lerp(Parts2[i - 1].CFrame * CFrame.Angles(-loudness / 20, math.sin(loudness / 50), 0) * CFrame.new(0, 0, 0.15), 0.8)
  163. end
  164. end
  165. end)
  166.  
  167. -- visualizer gui
  168.  
  169. local visualizergui = Instance.new("ScreenGui")
  170. local Frame = Instance.new("Frame")
  171. local idvalue = Instance.new("TextBox")
  172. local play = Instance.new("TextButton")
  173. local volume = Instance.new("TextBox")
  174. local pitch = Instance.new("TextBox")
  175. local close = Instance.new("TextButton")
  176. local min = Instance.new("TextButton")
  177. local credits = Instance.new("TextLabel")
  178. local open = Instance.new("TextButton")
  179. local set2 = Instance.new("TextButton")
  180. local set1 = Instance.new("TextButton")
  181. local loop = Instance.new("TextButton")
  182.  
  183. --properties xd
  184. visualizergui.Name = "visualizergui"
  185. visualizergui.Parent = game.Players.ThatProGamerKilledU.PlayerGui
  186.  
  187. Frame.Parent = visualizergui
  188. Frame.BackgroundColor3 = Color3.new(0.701961, 0.952941, 1)
  189. Frame.BackgroundTransparency = 0.20000000298023
  190. Frame.BorderColor3 = Color3.new(0.211765, 0.329412, 0.415686)
  191. Frame.BorderSizePixel = 8
  192. Frame.Position = UDim2.new(0, 51, 0, 213)
  193. Frame.Size = UDim2.new(0, 418, 0, 213)
  194. Frame.Active = true
  195. Frame.Draggable = true
  196. Frame.Visible = false
  197.  
  198. idvalue.Name = "idvalue"
  199. idvalue.Parent = Frame
  200. idvalue.BackgroundColor3 = Color3.new(0.666667, 1, 1)
  201. idvalue.BackgroundTransparency = 0.5
  202. idvalue.Size = UDim2.new(0, 418, 0, 50)
  203. idvalue.Font = Enum.Font.Fantasy
  204. idvalue.FontSize = Enum.FontSize.Size24
  205. idvalue.Text = "Put ID plz"
  206. idvalue.TextSize = 24
  207.  
  208. play.Name = "play"
  209. play.Parent = Frame
  210. play.BackgroundColor3 = Color3.new(0.666667, 1, 1)
  211. play.BackgroundTransparency = 0.44999998807907
  212. play.BorderColor3 = Color3.new(0.207843, 0.0901961, 0.0705882)
  213. play.BorderSizePixel = 3
  214. play.Position = UDim2.new(0, 9, 0, 82)
  215. play.Size = UDim2.new(0, 117, 0, 50)
  216. play.Font = Enum.Font.SourceSans
  217. play.FontSize = Enum.FontSize.Size28
  218. play.Text = "Play"
  219. play.TextSize = 28
  220.  
  221. volume.Name = "volume"
  222. volume.Parent = Frame
  223. volume.BackgroundColor3 = Color3.new(0.666667, 1, 1)
  224. volume.BackgroundTransparency = 0.44999998807907
  225. volume.BorderColor3 = Color3.new(0.207843, 0.0901961, 0.0705882)
  226. volume.BorderSizePixel = 3
  227. volume.Position = UDim2.new(0, 151, 0, 82)
  228. volume.Size = UDim2.new(0, 117, 0, 50)
  229. volume.Font = Enum.Font.SourceSans
  230. volume.FontSize = Enum.FontSize.Size28
  231. volume.Text = "Volume"
  232. volume.TextSize = 28
  233.  
  234. pitch.Name = "pitch"
  235. pitch.Parent = Frame
  236. pitch.BackgroundColor3 = Color3.new(0.666667, 1, 1)
  237. pitch.BackgroundTransparency = 0.44999998807907
  238. pitch.BorderColor3 = Color3.new(0.207843, 0.0901961, 0.0705882)
  239. pitch.BorderSizePixel = 3
  240. pitch.Position = UDim2.new(0, 291, 0, 82)
  241. pitch.Size = UDim2.new(0, 117, 0, 50)
  242. pitch.Font = Enum.Font.SourceSans
  243. pitch.FontSize = Enum.FontSize.Size28
  244. pitch.Text = "Pitch"
  245. pitch.TextSize = 28
  246.  
  247. close.Name = "close"
  248. close.Parent = Frame
  249. close.BackgroundColor3 = Color3.new(1, 0, 0.0156863)
  250. close.BackgroundTransparency = 0.40000000596046
  251. close.Position = UDim2.new(0, 393, 0, 190)
  252. close.Size = UDim2.new(0, 25, 0, 23)
  253. close.Font = Enum.Font.SourceSans
  254. close.FontSize = Enum.FontSize.Size28
  255. close.Text = "X"
  256. close.TextSize = 28
  257.  
  258. min.Name = "min"
  259. min.Parent = Frame
  260. min.BackgroundColor3 = Color3.new(0.286275, 0.286275, 1)
  261. min.BackgroundTransparency = 0.40000000596046
  262. min.Position = UDim2.new(0, 357, 0, 190)
  263. min.Size = UDim2.new(0, 25, 0, 23)
  264. min.Font = Enum.Font.SourceSans
  265. min.FontSize = Enum.FontSize.Size36
  266. min.Text = "-"
  267. min.TextSize = 36
  268.  
  269. credits.Name = "credits"
  270. credits.Parent = Frame
  271. credits.BackgroundColor3 = Color3.new(1, 1, 1)
  272. credits.BackgroundTransparency = 1
  273. credits.Position = UDim2.new(0, 0, 0, 161)
  274. credits.Size = UDim2.new(0, 200, 0, 52)
  275. credits.Font = Enum.Font.SourceSans
  276. credits.FontSize = Enum.FontSize.Size14
  277. credits.Text = "credits to mr steal yo bork for gui, i didn't make the visualizer credits to whoever leaked it or made it."
  278. credits.TextSize = 14
  279. credits.TextWrapped = true
  280.  
  281. open.Name = "open"
  282. open.Parent = visualizergui
  283. open.BackgroundColor3 = Color3.new(0.666667, 1, 1)
  284. open.BackgroundTransparency = 0.44999998807907
  285. open.BorderColor3 = Color3.new(0.207843, 0.0901961, 0.0705882)
  286. open.BorderSizePixel = 3
  287. open.Position = UDim2.new(0, 0, 0, 400)
  288. open.Size = UDim2.new(0, 59, 0, 50)
  289. open.Font = Enum.Font.SourceSans
  290. open.FontSize = Enum.FontSize.Size28
  291. open.Text = "Open"
  292. open.TextSize = 28
  293. open.Visible = false
  294.  
  295. set2.Name = "set2"
  296. set2.Parent = Frame
  297. set2.BackgroundColor3 = Color3.new(0.666667, 1, 1)
  298. set2.BackgroundTransparency = 0.44999998807907
  299. set2.BorderColor3 = Color3.new(0.207843, 0.0901961, 0.0705882)
  300. set2.BorderSizePixel = 3
  301. set2.Position = UDim2.new(0, 325, 0, 136)
  302. set2.Size = UDim2.new(0, 55, 0, 25)
  303. set2.Font = Enum.Font.SourceSans
  304. set2.FontSize = Enum.FontSize.Size24
  305. set2.Text = "Set"
  306. set2.TextSize = 24
  307. set2.TextWrapped = true
  308.  
  309. set1.Name = "set1"
  310. set1.Parent = Frame
  311. set1.BackgroundColor3 = Color3.new(0.666667, 1, 1)
  312. set1.BackgroundTransparency = 0.44999998807907
  313. set1.BorderColor3 = Color3.new(0.207843, 0.0901961, 0.0705882)
  314. set1.BorderSizePixel = 3
  315. set1.Position = UDim2.new(0, 181, 0, 136)
  316. set1.Size = UDim2.new(0, 55, 0, 25)
  317. set1.Font = Enum.Font.SourceSans
  318. set1.FontSize = Enum.FontSize.Size24
  319. set1.Text = "Set"
  320. set1.TextSize = 24
  321. set1.TextWrapped = true
  322.  
  323. loop.Name = "loop"
  324. loop.Parent = Frame
  325. loop.BackgroundColor3 = Color3.new(0.666667, 1, 1)
  326. loop.BackgroundTransparency = 0.44999998807907
  327. loop.BorderColor3 = Color3.new(0.207843, 0.0901961, 0.0705882)
  328. loop.BorderSizePixel = 3
  329. loop.Position = UDim2.new(0, 241, 0, 188)
  330. loop.Size = UDim2.new(0, 84, 0, 25)
  331. loop.Font = Enum.Font.SourceSans
  332. loop.FontSize = Enum.FontSize.Size18
  333. loop.Text = "Loop : OFF"
  334. loop.TextSize = 18
  335. loop.TextWrapped = true
  336.  
  337. -- functions
  338. function start()
  339. wait(0.5)
  340. Frame.Position = UDim2.new(0, -500, 0, 400)
  341. Frame.Visible = true
  342. Frame:TweenPosition(UDim2.new(0, 0, 0, 400),Enum.EasingDirection.InOut,Enum.EasingStyle.Quint,1)
  343. end
  344.  
  345. if game.Players.ThatProGamerKilledU.Character then
  346. start()
  347. else
  348. print'character not found plz try again XD'
  349. end
  350.  
  351. function minimize()
  352. Frame:TweenPosition(UDim2.new(0, 0, 0, 400),Enum.EasingDirection.InOut,Enum.EasingStyle.Quint,1)
  353. credits.Text = ""
  354. min.Text = ""
  355. close.Text = ""
  356. play.Text = ""
  357. pitch.Text = ""
  358. volume.Text = ""
  359. idvalue.Text = ""
  360. set1.Text = ""
  361. set2.Text = ""
  362. loop.Text = ""
  363. Frame:TweenSize(UDim2.new(0, 0, 0, 0),Enum.EasingDirection.InOut,Enum.EasingStyle.Quint,0.5)
  364. credits:TweenSize(UDim2.new(0, 0, 0, 0),Enum.EasingDirection.InOut,Enum.EasingStyle.Quint,0.5)
  365. min:TweenSize(UDim2.new(0, 0, 0, 0),Enum.EasingDirection.InOut,Enum.EasingStyle.Quint,0.5)
  366. close:TweenSize(UDim2.new(0, 0, 0, 0),Enum.EasingDirection.InOut,Enum.EasingStyle.Quint,0.5)
  367. idvalue:TweenSize(UDim2.new(0, 0, 0, 0),Enum.EasingDirection.InOut,Enum.EasingStyle.Quint,0.5)
  368. volume:TweenSize(UDim2.new(0, 0, 0, 0),Enum.EasingDirection.InOut,Enum.EasingStyle.Quint,0.5)
  369. play:TweenSize(UDim2.new(0, 0, 0, 0),Enum.EasingDirection.InOut,Enum.EasingStyle.Quint,0.5)
  370. pitch:TweenSize(UDim2.new(0, 0, 0, 0),Enum.EasingDirection.InOut,Enum.EasingStyle.Quint,0.5)
  371. loop:TweenSize(UDim2.new(0, 0, 0, 0),Enum.EasingDirection.InOut,Enum.EasingStyle.Quint,0.5)
  372. set1:TweenSize(UDim2.new(0, 0, 0, 0),Enum.EasingDirection.InOut,Enum.EasingStyle.Quint,0.5)
  373. set2:TweenSize(UDim2.new(0, 0, 0, 0),Enum.EasingDirection.InOut,Enum.EasingStyle.Quint,0.5)
  374. Frame:TweenPosition(UDim2.new(0, 0, 0, 400),Enum.EasingDirection.InOut,Enum.EasingStyle.Quint,0.5)
  375. wait(0.5)
  376. Frame.Visible = false
  377. open.Visible = true
  378. end
  379.  
  380. function show()
  381. open.Visible = false
  382. Frame.Position = UDim2.new(0, -500, 0, 400)
  383. Frame.Visible = true
  384. credits.Text = "credits to me for gui, i didn't make the visualizer credits to whoever leaked it or made it."
  385. min.Text = "-"
  386. close.Text = "X"
  387. play.Text = "Play"
  388. pitch.Text = "Pitch"
  389. volume.Text = "Volume"
  390. idvalue.Text = "Put ID plz"
  391. set1.Text = "Set"
  392. set2.Text = "Set"
  393. loop.Text = "Loop : OFF"
  394. Frame:TweenSize(UDim2.new(0, 418, 0, 213),Enum.EasingDirection.InOut,Enum.EasingStyle.Quint,0.5)
  395. credits:TweenSize(UDim2.new(0, 200, 0, 52),Enum.EasingDirection.InOut,Enum.EasingStyle.Quint,0.5)
  396. min:TweenSize(UDim2.new(0, 25, 0, 23),Enum.EasingDirection.InOut,Enum.EasingStyle.Quint,0.5)
  397. close:TweenSize(UDim2.new(0, 25, 0, 23),Enum.EasingDirection.InOut,Enum.EasingStyle.Quint,0.5)
  398. idvalue:TweenSize(UDim2.new(0, 418, 0, 50),Enum.EasingDirection.InOut,Enum.EasingStyle.Quint,0.5)
  399. volume:TweenSize(UDim2.new(0, 117, 0, 50),Enum.EasingDirection.InOut,Enum.EasingStyle.Quint,0.5)
  400. play:TweenSize(UDim2.new(0, 117, 0, 50),Enum.EasingDirection.InOut,Enum.EasingStyle.Quint,0.5)
  401. pitch:TweenSize(UDim2.new(0, 117, 0, 50),Enum.EasingDirection.InOut,Enum.EasingStyle.Quint,0.5)
  402. set1:TweenSize(UDim2.new(0, 55, 0, 25),Enum.EasingDirection.InOut,Enum.EasingStyle.Quint,0.5)
  403. loop:TweenSize(UDim2.new(0, 84, 0, 25),Enum.EasingDirection.InOut,Enum.EasingStyle.Quint,0.5)
  404. set2:TweenSize(UDim2.new(0, 55, 0, 25),Enum.EasingDirection.InOut,Enum.EasingStyle.Quint,0.5)
  405. Frame:TweenPosition(UDim2.new(0, 0, 0, 400),Enum.EasingDirection.InOut,Enum.EasingStyle.Quint, 0.5)
  406. end
  407.  
  408. function exitdatshit()
  409. Frame:TweenPosition(UDim2.new(0, 0, 0, 400),Enum.EasingDirection.InOut,Enum.EasingStyle.Quint,1)
  410. credits.Text = ""
  411. min.Text = ""
  412. close.Text = ""
  413. play.Text = ""
  414. pitch.Text = ""
  415. volume.Text = ""
  416. idvalue.Text = ""
  417. Frame:TweenSize(UDim2.new(0, 0, 0, 0),Enum.EasingDirection.InOut,Enum.EasingStyle.Quint,0.5)
  418. credits:TweenSize(UDim2.new(0, 0, 0, 0),Enum.EasingDirection.InOut,Enum.EasingStyle.Quint,0.5)
  419. min:TweenSize(UDim2.new(0, 0, 0, 0),Enum.EasingDirection.InOut,Enum.EasingStyle.Quint,0.5)
  420. close:TweenSize(UDim2.new(0, 0, 0, 0),Enum.EasingDirection.InOut,Enum.EasingStyle.Quint,0.5)
  421. idvalue:TweenSize(UDim2.new(0, 0, 0, 0),Enum.EasingDirection.InOut,Enum.EasingStyle.Quint,0.5)
  422. volume:TweenSize(UDim2.new(0, 0, 0, 0),Enum.EasingDirection.InOut,Enum.EasingStyle.Quint,0.5)
  423. play:TweenSize(UDim2.new(0, 0, 0, 0),Enum.EasingDirection.InOut,Enum.EasingStyle.Quint,0.5)
  424. pitch:TweenSize(UDim2.new(0, 0, 0, 0),Enum.EasingDirection.InOut,Enum.EasingStyle.Quint,0.5)
  425. set1:TweenSize(UDim2.new(0, 0, 0, 0),Enum.EasingDirection.InOut,Enum.EasingStyle.Quint,0.5)
  426. set2:TweenSize(UDim2.new(0, 0, 0, 0),Enum.EasingDirection.InOut,Enum.EasingStyle.Quint,0.5)
  427. loop:TweenSize(UDim2.new(0, 0, 0, 0),Enum.EasingDirection.InOut,Enum.EasingStyle.Quint,0.5)
  428. Frame:TweenPosition(UDim2.new(0, 0, 0, 400),Enum.EasingDirection.InOut,Enum.EasingStyle.Quint,0.5)
  429. wait(0.5)
  430. visualizergui:Destroy()
  431. end
  432.  
  433. -- events
  434. wait(1)
  435. min.MouseButton1Down:connect(function()
  436. minimize()
  437. end)
  438.  
  439. open.MouseButton1Down:connect(function()
  440. show()
  441. end)
  442.  
  443. close.MouseButton1Down:connect(function()
  444. exitdatshit()
  445. end)
  446.  
  447. set1.MouseButton1Down:connect(function()
  448. sound.Volume = volume.Text
  449. end)
  450.  
  451. set2.MouseButton1Down:connect(function()
  452. sound.Pitch = pitch.Text
  453. end)
  454.  
  455. play.MouseButton1Down:connect(function()
  456. sound.TimePosition = 0
  457. sound.SoundId = "rbxassetid://" .. idvalue.Text
  458. end)
  459.  
  460. loop.MouseButton1Down:connect(function()
  461. if loop.Text == "Loop : OFF" then
  462. sound.Looped = true
  463. loop.Text = "Loop : ON"
  464. else
  465. sound.Looped = false
  466. loop.Text = "Loop : OFF"
  467. end
  468. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement