Advertisement
actracer

Roblox - "STOP" Loop

Jun 18th, 2018
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.04 KB | None | 0 0
  1. local num = 1
  2. local plr = game:GetService("Players").LocalPlayer
  3. local plrchar = plr.Character or plr.CharacterAdded:Wait()
  4. local bill = Instance.new("BillboardGui", plrchar:WaitForChild("HumanoidRootPart"))
  5. bill.Adornee = bill.Parent
  6. bill.Size = UDim2.new(0,1000,0,50) -- using offset after a long time
  7. bill.StudsOffset = Vector3.new(0,10,0)
  8. local text = Instance.new("TextLabel", bill)
  9. text.BackgroundColor3 = Color3.new(1,1,1)
  10. text.BackgroundTransparency = 0
  11. text.BorderSizePixel = 0
  12. text.Size = UDim2.new(1,0,1,0)
  13. text.Font = "Bodoni"
  14. text.TextColor3 = Color3.new(1,0,0)
  15. text.TextSize = 50
  16. while wait(0.25) do
  17.     if num == 1 then
  18.         text.Text = "STOP"
  19.         num = 2
  20.     elseif num == 2 then
  21.         text.Text = "ASASASASA"
  22.         num = 3
  23.     elseif num == 3 then
  24.         text.Text = "WHY DID YOU HAVE TO DO THIS TO ME"
  25.         num = 4
  26.     elseif num == 4 then
  27.         text.Text = "YOU KNOW I COULD HAVE EXECUTED THIS"
  28.         num = 5
  29.     elseif num == 5 then
  30.         text.Text = "SO WHY DID YOU DO THAT"
  31.         num = 6
  32.     elseif num == 6 then
  33.         text.Text = "I AM MAD RIGHT NOW"
  34.         num = 1
  35.     end
  36. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement