Advertisement
ARY106_7

سكربت باند

Apr 17th, 2024
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.75 KB | None | 0 0
  1. -- تم نشر سكربت من قبل باندا مود المترجم --
  2. local Players = game:GetService("Players")
  3. local LocalPlayer = Players.LocalPlayer
  4.  
  5. local Gui = Instance.new("ScreenGui")
  6. Gui.Name = "KickGui"
  7. Gui.Parent = LocalPlayer:WaitForChild("PlayerGui")
  8.  
  9. local Frame = Instance.new("Frame")
  10. Frame.Size = UDim2.new(0, 200, 0, 120)
  11. Frame.Position = UDim2.new(0.5, -100, 0.5, -60)
  12. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  13. Frame.BackgroundTransparency = 0.5
  14. Frame.Active = true -- Enable user interaction on mobile
  15. Frame.Draggable = true -- Make the frame draggable on mobile
  16. Frame.Parent = Gui
  17.  
  18. local Heading = Instance.new("TextLabel")
  19. Heading.Size = UDim2.new(1, -20, 0, 30)
  20. Heading.Position = UDim2.new(0, 10, 0, 10)
  21. Heading.BackgroundColor3 = Color3.new(1, 1, 1)
  22. Heading.TextColor3 = Color3.new(0, 0, 0)
  23. Heading.Font = Enum.Font.SourceSansBold
  24. Heading.TextSize = 18
  25. Heading.Text = "Edit By Banda Mod / Soon"
  26. Heading.Parent = Frame
  27.  
  28. local TextBox = Instance.new("TextBox")
  29. TextBox.Size = UDim2.new(1, -20, 0, 30)
  30. TextBox.Position = UDim2.new(0, 10, 0, 50)
  31. TextBox.BackgroundColor3 = Color3.new(1, 1, 1)
  32. TextBox.TextColor3 = Color3.new(0, 0, 0)
  33. TextBox.Font = Enum.Font.SourceSans
  34. TextBox.TextSize = 18
  35. TextBox.PlaceholderText = "RSOON"
  36. TextBox.Parent = Frame
  37.  
  38. local Button = Instance.new("TextButton")
  39. Button.Size = UDim2.new(1, -20, 0, 30)
  40. Button.Position = UDim2.new(0, 10, 0, 90)
  41. Button.BackgroundColor3 = Color3.new(1, 0, 0)
  42. Button.TextColor3 = Color3.new(1, 1, 1)
  43. Button.Text = "الـجـمـيع طـرد"
  44. Button.Font = Enum.Font.SourceSansBold
  45. Button.TextSize = 20
  46. Button.Parent = Frame
  47.  
  48. Button.MouseButton1Click:Connect(function()
  49. local customMessage = TextBox.Text
  50. LocalPlayer:Kick(customMessage)
  51. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement