Advertisement
Mhammed_2013

طلب 3

Feb 15th, 2024 (edited)
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. -- 777
  2. local box = Instance.new("Part")
  3. box.Name = "ClickableBox"
  4. box.Anchored = true
  5. box.Size = Vector3.new(1, 1, 1)
  6. box.Position = Vector3.new(0, 0.5, 0) -- 777
  7. box.BrickColor = BrickColor.new("Institutional white") -- 777
  8. box.Parent = workspace
  9.  
  10. -- 777
  11. local textLabel = Instance.new("BillboardGui")
  12. textLabel.Size = UDim2.new(0, 200, 0, 50)
  13. textLabel.Adornee = box
  14. textLabel.Parent = box
  15. local text = Instance.new("TextLabel")
  16. text.Size = UDim2.new(1, 0, 1, 0)
  17. text.Text = "تم صناعه السكربت من قبل محمد"
  18. text.Parent = textLabel
  19.  
  20. -- 777
  21. local clickDetector = Instance.new("ClickDetector")
  22. clickDetector.Parent = box
  23. local autoLevelUp = false
  24. local function onClick(player)
  25. autoLevelUp = not autoLevelUp -- تبديل الحالة
  26. while autoLevelUp do
  27. player.leaderstats.PlayerLevel.Value = player.leaderstats.PlayerLevel.Value + 1
  28. wait(1) -- 777
  29. end
  30. end
  31. clickDetector.MouseClick:Connect(onClick)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement