Advertisement
MaxproGlitcher

Gui Fling avec le nom du joueur .lua

Dec 28th, 2023 (edited)
512
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.53 KB | None | 0 0
  1. -- Verion 1,3 du Gui Fling
  2.  
  3. -- 1 .Ce script est un Gui pour Fling les joueurs de la game
  4.  
  5. -- 2. Ce script est la propriéter de maxproglitcher et il est Copyright!!!
  6.  
  7. -- 3. Mes oui le code est Open Source pour prouver le script est pas un Script Malware...
  8.  
  9. -- 4. Ce script risque d'être mise a jour vue de la documentation .Lua qui évolue a force des années..
  10.  
  11. -- 5. Je ne suis pas responsable des bannisements que vous prenez en utilisant se script ne pas utiliser sur des jeux qui on des Anti-TP , ou Anti-Cheat
  12.  
  13. ---------------------------------------------------------------------------------------------------------------------------------------
  14.  
  15.  
  16. -- Notificaton de ouverture du Gui
  17.  
  18. game:GetService("StarterGui"):SetCore("SendNotification",{
  19. Title = "Gui Fling",
  20. Text = "Script it executer",
  21. Icon = "rbxassetid://18239900193",
  22. Duration = 15
  23. })
  24.  
  25.  
  26.  
  27. local lp = game:FindService("Players").LocalPlayer
  28.  
  29. local function gplr(String)
  30. local Found = {}
  31. local strl = String:lower()
  32. if strl == "all" then
  33. for i,v in pairs(game:FindService("Players"):GetPlayers()) do
  34. table.insert(Found,v)
  35. end
  36. elseif strl == "others" then
  37. for i,v in pairs(game:FindService("Players"):GetPlayers()) do
  38. if v.Name ~= lp.Name then
  39. table.insert(Found,v)
  40. end
  41. end
  42. elseif strl == "me" then
  43. for i,v in pairs(game:FindService("Players"):GetPlayers()) do
  44. if v.Name == lp.Name then
  45. table.insert(Found,v)
  46. end
  47. end
  48. else
  49. for i,v in pairs(game:FindService("Players"):GetPlayers()) do
  50. if v.Name:lower():sub(1, #String) == String:lower() then
  51. table.insert(Found,v)
  52. end
  53. end
  54. end
  55. return Found
  56. end
  57.  
  58. --// Code pour le Gui
  59.  
  60. local h = Instance.new("ScreenGui")
  61. local Main = Instance.new("ImageLabel")
  62. local Top = Instance.new("Frame")
  63. local Title = Instance.new("TextLabel")
  64. local TextBox = Instance.new("TextBox")
  65. local TextButton = Instance.new("TextButton")
  66.  
  67. h.Name = "h"
  68. h.Parent = game.Players.LocalPlayer.PlayerGui
  69. h.ResetOnSpawn = false
  70.  
  71. Main.Name = "Main"
  72. Main.Parent = h
  73. Main.Active = true
  74. Main.Draggable = true
  75. Main.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  76. Main.BorderSizePixel = 0
  77. Main.Position = UDim2.new(0.174545452, 0, 0.459574461, 0)
  78. Main.Size = UDim2.new(0, 454, 0, 218)
  79. Main.Image = "rbxassetid://18195805323"
  80.  
  81. Top.Name = "Top"
  82. Top.Parent = Main
  83. Top.BackgroundColor3 = Color3.fromRGB(57, 57, 57)
  84. Top.BorderSizePixel = 0
  85. Top.Size = UDim2.new(0, 454, 0, 44)
  86.  
  87. Title.Name = "Title"
  88. Title.Parent = Top
  89. Title.BackgroundColor3 = Color3.fromRGB(49, 49, 49)
  90. Title.BorderSizePixel = 0
  91. Title.Position = UDim2.new(0, 0, 0.295454562, 0)
  92. Title.Size = UDim2.new(0, 454, 0, 30)
  93. Title.Font = Enum.Font.SourceSans
  94. Title.Text = "By MaxproGlitcher (Troll Gui Fling)"
  95. Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  96. Title.TextScaled = true
  97. Title.TextSize = 14.000
  98. Title.TextWrapped = true
  99.  
  100. TextBox.Parent = Main
  101. TextBox.BackgroundColor3 = Color3.fromRGB(49, 49, 49)
  102. TextBox.BorderSizePixel = 0
  103. TextBox.Position = UDim2.new(0.0704845786, 0, 0.270642221, 0)
  104. TextBox.Size = UDim2.new(0, 388, 0, 62)
  105. TextBox.Font = Enum.Font.SourceSans
  106. TextBox.PlaceholderText = "Utilisateurs(Real name Account)"
  107. TextBox.Text = ""
  108. TextBox.TextColor3 = Color3.fromRGB(255, 255, 255)
  109. TextBox.TextScaled = true
  110. TextBox.TextSize = 14.000
  111. TextBox.TextWrapped = true
  112.  
  113. TextButton.Parent = Main
  114. TextButton.BackgroundColor3 = Color3.fromRGB(49, 49, 49)
  115. TextButton.BorderSizePixel = 0
  116. TextButton.Position = UDim2.new(0.10352423, 0, 0.596330225, 0)
  117. TextButton.Size = UDim2.new(0, 359, 0, 50)
  118. TextButton.Font = Enum.Font.SourceSans
  119. TextButton.Text = "Button Fling Players"
  120. TextButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  121. TextButton.TextScaled = true
  122. TextButton.TextSize = 14.000
  123. TextButton.TextWrapped = true
  124.  
  125. TextButton.MouseButton1Click:Connect(function()
  126. local Target = gplr(TextBox.Text)
  127. if Target[1] then
  128. Target = Target[1]
  129.  
  130. local Thrust = Instance.new('BodyThrust', lp.Character.HumanoidRootPart)
  131. Thrust.Force = Vector3.new(9999,9999,9999)
  132. Thrust.Name = "YeetForce"
  133. repeat
  134. lp.Character.HumanoidRootPart.CFrame = Target.Character.HumanoidRootPart.CFrame
  135. Thrust.Location = Target.Character.HumanoidRootPart.Position
  136. game:FindService("RunService").Heartbeat:wait()
  137. until not Target.Character:FindFirstChild("Head")
  138. else
  139. warn("invalid player")
  140. end
  141. end)
  142.  
  143. print ("Script is exercuter")
  144.  
  145. warn ("If you encounter any problems, come and dm me on Discord: maxproglitcher")
  146.  
  147. warn ("Si vous rencontrez des problèmes, venez me dm sur Discord : maxproglitcher")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement