Advertisement
Guest User

Roblox School Simulator write on floor + free tools

a guest
Oct 15th, 2021
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.93 KB | None | 0 0
  1. --[[
  2.        Created by Mr Oof#0001, made for Roblox school simulator (https://www.roblox.com/games/7280118908/School-Simulator)
  3.        - Free Tools
  4.        - Write on floor
  5. --]]
  6.  
  7. local workspaceStuff = game.Workspace:GetChildren()
  8. local oof = game.Players.LocalPlayer.Backpack.Chalk:FindFirstChild("LocalScript")
  9. local backpack = game.Players.LocalPlayer.Backpack
  10.  
  11. oof.Name = "a"
  12. wait(0.1)
  13. if backpack.Chalk.LocalScript and backpack.Boombox.LocalScript and backpack.Push.LocalScript then
  14.     backpack.Chalk.LocalScript:Destroy()
  15.     backpack.Boombox.LocalScript:Destroy()
  16.     backpack.Push.LocalScript:Destroy()
  17. end
  18.  
  19. for i, v in pairs(workspaceStuff) do
  20.     if v.Name == "Part" then
  21.         if v.BrickColor == BrickColor.new("Earth green") then
  22.             v.Name = "board"
  23.             local board = game.Workspace.board
  24.             board.Size = Vector3.new(150.173, 1.55, 100.123)
  25.             board.Position = Vector3.new(-57.275, 0.1, 4.9)
  26.             board.CanCollide = false
  27.         end
  28.     end
  29. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement