About 141,000 results
Open links in new tab
  1. How to make a note system - Scripting Support - Roblox

    Sep 18, 2021 · local data = game:GetService("DataStoreService") -- get our data service local notes = data:GetDataStore("Notes") -- get the notes data local server_notes = {} -- our table for server notes so that we don't overfill the data requests game.ReplicatedStorage.EventHere.OnServerEvent:Connect(function(player, notetext) server_notes[#server_notes+1] = notetext -- add the note in from a remote event ...

  2. How To Make A Note System? - Scripting Support - Roblox

    Mar 22, 2021 · They all have a note system or some type of system where you pay robux and you can put something on a wall and customize it or write on it. I am looking for a quick tutorial or yt video or just a model I could use to help make a system like this.

  3. Creating a note system - Scripting Support - Developer Forum

    May 30, 2023 · Hello, I am new at programming and would like some help regarding something I wanted to create. I want to create a customizable note system. Upon clicking on the sheet of paper on the table, I want a GUI to pop up where it shows what I write. After I finish, there is a button to take a letter, it would give me a cloned tool of a letter with my text on it and I am able to put it on a wall with ...

  4. Notepad for Roblox Studio

    Sep 11, 2022 · There is no need to open the built-in Notepad app on your computer, just hit the “Open Notepad” button in the plugin section of Roblox Studio. Get the plugin here: Notepad - Roblox. Special thanks to @HugeCoolboy2007 for helping me with text automatic saving. Commands: tRed = red textcolor tBlue = Blue textcolor tYellow = yellow textcolor

  5. Collaborative Notes Plugin (Not a chat!) - Roblox

    Sep 27, 2019 · Introducing… Collaborative Notes! This plugin is designed for you to write notes about your work, and will replicate to everyone in your Team Create in real time ...

  6. Notes Generator Plugin - Community Resources - Developer …

    Jul 8, 2024 · Notes Generator plugin for Roblox Studio, a tool that makes annotating scripts easy. It helps developers add detailed explanations and optional summaries to improve code clarity and teamwork. With a user-friendly interface. Ideal for developers who want clear script notes and better project organization in Roblox game development.

  7. Notes Plugin Out Now! - Community Resources - Developer …

    Jul 22, 2024 · The plugin: https://create.roblox.com/store/asset/18610876552/Notes It’s easy to forget important tasks, especially during long coding sessions.

  8. How to Make Text Clickable? - Scripting Support - Developer …

    Nov 16, 2022 · I’m currently trying to make an information index for my game, but I want a script to automatically find words in the Text property of a TextLabel and make them clickable (so if a player clicks the WORD it redirects them to another gui) How would I go about doing this? I don’t know what systems or methods to use. I plan to have multiple redirects in one description so I can’t just make ...

  9. Note Placement System - Scripting Support - Developer Forum

    Jun 22, 2024 · I want to make a note placement system where any surface its placed on the front of the note is visible and can be read, but every attempt i have made I have never been able to make the orientation work to my needs. A…

  10. How to make a writtable paper - Scripting Support - Roblox

    Apr 19, 2021 · Hey ! I’m trying to make a writtable paper system. When the player click on the paper model, it’ll open a gui, the player can write whatever he wants. And when he leaves the gui, it saves the text for everyone, so they can read it, here is the script : Local script : script.Parent.MouseButton1Click:Connect(function() local text = script.Parent.Parent.TextBox.Text game.Workspace.Paper ...