Advertisement
xennyYT

Wolve'es LIfe 3 GUI

Nov 19th, 2019
3,387
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.70 KB | None | 0 0
  1. local SGui = Instance.new("ScreenGui", game.CoreGui)
  2. local Frame = Instance.new("Frame", SGui)
  3. local Person = Instance.new("TextBox", Frame)
  4. local Title = Instance.new("TextLabel", Frame)
  5. local Insane = Instance.new("TextButton", Frame)
  6. local ihateuiscalefuckaaaa = Instance.new("UIScale", Frame)
  7. Frame.BackgroundColor3 = Color3.new(180/255, 255/255, 67/255)
  8. Frame.BorderSizePixel = 0
  9. Frame.Active = true
  10. Frame.Draggable = true
  11. Frame.Size = UDim2.new(0, 200, 0, 170)
  12. Frame.Position = UDim2.new(0, 20, 0, 450)
  13. Title.Font = 12
  14. Title.TextSize = 15
  15. Title.Position = UDim2.new(0, 0, 0, -5)
  16. Title.BackgroundColor3 = Color3.new(180/255, 255/255, 67/255)
  17. Title.Size = UDim2.new(0, 200, 0, 50)
  18. Title.TextWrapped = true
  19. Title.BorderSizePixel = 0
  20. Title.Text = "Wolves life 3 Insane GUI By xFunnieuss and Partial Name Support By Timeless"
  21. Person.Text = "Person to Spaz"
  22. Person.BackgroundColor3 = Color3.new(39/255, 180/255, 255/255)
  23. Person.Font = 12
  24. Person.BorderSizePixel = 2
  25. Person.Size = UDim2.new(0, 150, 0, 40)
  26. Person.Position = UDim2.new(0, 25, 0, 50)
  27. Person.TextSize = 15
  28. Insane.BackgroundColor3 = Color3.new(39/255, 180/255, 255/255)
  29. Insane.Text = "Spaz out"
  30. Insane.BorderSizePixel = 2
  31. Insane.Font = 12
  32. Insane.TextSize = 15
  33. Insane.Position = UDim2.new(0, 25, 0, 100)
  34. Insane.Size = UDim2.new(0, 150, 0, 40)
  35. ihateuiscalefuckaaaa.Scale = 1.3
  36. Insane.MouseButton1Down:connect(function()
  37. for i,v in pairs(game:GetService('Players'):GetPlayers()) do
  38. if v.Name:lower():sub(1,#Person.Text) == Person.Text:lower() then
  39. game:GetService('RunService').Stepped:connect(function()
  40. game.Players[v.Name].Character.turnhead.turnevent:FireServer(math.random(9999), math.random(9999), math.random(9999))
  41. end)
  42. end
  43. end
  44. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement