Advertisement
ROBLOX_SCRIPT_SHARE

ANIMAL SIM SCRIPT

Feb 16th, 2022
4,657
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.60 KB | None | 0 0
  1. -- Instances:
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local frame = Instance.new("Frame")
  5. local Photo = Instance.new("ImageLabel")
  6. local UICorner = Instance.new("UICorner")
  7. local OFF = Instance.new("TextButton")
  8. local ON = Instance.new("TextButton")
  9. local TextLabel = Instance.new("TextLabel")
  10.  
  11. --Properties:
  12.  
  13. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  14. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  15. ScreenGui.ResetOnSpawn = false
  16.  
  17. frame.Name = "frame"
  18. frame.Parent = ScreenGui
  19. frame.BackgroundColor3 = Color3.fromRGB(38, 38, 38)
  20. frame.BackgroundTransparency = 1.000
  21. frame.Position = UDim2.new(0.39531222, 0, 0.252102971, 0)
  22. frame.Size = UDim2.new(0, 182, 0, 260)
  23. frame.Active = true
  24. frame.Draggable = true
  25.  
  26. Photo.Name = "Photo"
  27. Photo.Parent = frame
  28. Photo.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  29. Photo.Position = UDim2.new(-0.00105160568, 0, -0.00663622376, 0)
  30. Photo.Size = UDim2.new(0, 185, 0, 264)
  31. Photo.Image = "rbxassetid://6687673823"
  32.  
  33. UICorner.CornerRadius = UDim.new(0, 9)
  34. UICorner.Parent = Photo
  35.  
  36. OFF.Name = "OFF"
  37. OFF.Parent = frame
  38. OFF.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  39. OFF.BackgroundTransparency = 1.000
  40. OFF.Position = UDim2.new(0.0674995333, 0, 0.606759489, 0)
  41. OFF.Size = UDim2.new(0, 159, 0, 50)
  42. OFF.Font = Enum.Font.SourceSans
  43. OFF.Text = "OFF"
  44. OFF.TextColor3 = Color3.fromRGB(255, 255, 255)
  45. OFF.TextScaled = true
  46. OFF.TextSize = 14.000
  47. OFF.TextWrapped = true
  48. OFF.MouseButton1Down:connect(function()
  49. loadstring(game:HttpGet("https://raw.githubusercontent.com/SenpaiSripter/Fails/main/AnimalSimulatorFail" , true))()
  50. end)
  51.  
  52. ON.Name = "ON"
  53. ON.Parent = frame
  54. ON.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  55. ON.BackgroundTransparency = 1.000
  56. ON.Position = UDim2.new(0.0683099926, 0, 0.283556789, 0)
  57. ON.Size = UDim2.new(0, 159, 0, 50)
  58. ON.Font = Enum.Font.SourceSans
  59. ON.Text = "ON"
  60. ON.TextColor3 = Color3.fromRGB(255, 255, 255)
  61. ON.TextScaled = true
  62. ON.TextSize = 14.000
  63. ON.TextWrapped = true
  64. ON.MouseButton1Down:connect(function()
  65. loadstring(game:HttpGet("https://raw.githubusercontent.com/SenpaiSripter/AnimalSimulator1/main/AnimalSimulatorScript" , true))()
  66. end)
  67.  
  68. TextLabel.Parent = frame
  69. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  70. TextLabel.BackgroundTransparency = 1.000
  71. TextLabel.Position = UDim2.new(-0.00105160568, 0, -0.0351857096, 0)
  72. TextLabel.Size = UDim2.new(0, 185, 0, 66)
  73. TextLabel.Font = Enum.Font.SourceSansSemibold
  74. TextLabel.Text = "DevSenpai"
  75. TextLabel.TextColor3 = Color3.fromRGB(255, 85, 255)
  76. TextLabel.TextScaled = true
  77. TextLabel.TextSize = 14.000
  78. TextLabel.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement