LuongLoiNhoi

Hack Mystical Fruits Online

Jan 12th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.99 KB | None | 0 0
  1. -- Objects
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local bylauhai = Instance.new("Frame")
  5. local by = Instance.new("TextLabel")
  6. local TextButton = Instance.new("TextButton")
  7.  
  8. -- Properties
  9.  
  10. ScreenGui.Parent = game.CoreGui
  11.  
  12. bylauhai.Name = "by lau hai"
  13. bylauhai.Parent = ScreenGui
  14. bylauhai.Active = true
  15. bylauhai.BackgroundColor3 = Color3.new(1, 0, 0)
  16. bylauhai.ClipsDescendants = true
  17. bylauhai.Position = UDim2.new(0.27940017, 0, 0.386977911, 0)
  18. bylauhai.Selectable = true
  19. bylauhai.Size = UDim2.new(0, 221, 0, 146)
  20. bylauhai.Active = true
  21. bylauhai.Draggable = true
  22.  
  23.  
  24. by.Name = "by"
  25. by.Parent = bylauhai
  26. by.Active = true
  27. by.BackgroundColor3 = Color3.new(1, 1, 1)
  28. by.Position = UDim2.new(0.0452488698, 0, 0, 0)
  29. by.Selectable = true
  30. by.Size = UDim2.new(0, 200, 0, 50)
  31. by.Font = Enum.Font.SourceSans
  32. by.Text = "by lau hai roblox"
  33. by.TextColor3 = Color3.new(0, 0, 0)
  34. by.TextSize = 14
  35.  
  36. TextButton.Parent = bylauhai
  37. TextButton.BackgroundColor3 = Color3.new(0, 0, 1)
  38. TextButton.Position = UDim2.new(0.0452488698, 0, 0.657534242, 0)
  39. TextButton.Size = UDim2.new(0, 200, 0, 50)
  40. TextButton.Font = Enum.Font.SourceSans
  41. TextButton.Text = "view df"
  42. TextButton.TextColor3 = Color3.new(0, 0, 0)
  43. TextButton.TextSize = 14
  44. TextButton.MouseButton1Click:connect(function()
  45. for i,v in pairs(game.Workspace:GetDescendants()) do
  46. if v.ClassName == "ClickDetector" then
  47. local BillboardGui = Instance.new("BillboardGui")
  48. local TextLabel = Instance.new("TextLabel")
  49.  
  50. if v.Parent.Parent.Name == "Model" then
  51.  
  52. BillboardGui.Parent = v.Parent
  53. BillboardGui.AlwaysOnTop = true
  54. BillboardGui.LightInfluence = 1
  55. BillboardGui.Size = UDim2.new(0, 20, 0, 20)
  56. BillboardGui.StudsOffset = Vector3.new(0, 2, 0)
  57.  
  58. TextLabel.Parent = BillboardGui
  59. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  60. TextLabel.BackgroundTransparency = 1
  61. TextLabel.Size = UDim2.new(1, 0, 1, 0)
  62. TextLabel.Text = "DEVIL FRUIT by lau hai"
  63. TextLabel.TextColor3 = Color3.new(1, 0, 0)
  64. TextLabel.TextScaled = true
  65. end
  66. end
  67. end
  68. end)
Add Comment
Please, Sign In to add comment